module Bot module Adapter class Base attr_reader :config def initialize(config={}) @config = config end def send_messages(messages) raise NotImplementedError end end end end