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