summaryrefslogtreecommitdiffstats
path: root/module_base.rb
blob: 01d3f745a82ec33414b3b3b817f5eb56e1c36f53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module Lain
  module Modules
    class Base
      def initialize(lain, config)
        @config = config
      end

      def on_message(muc, message)
      end
    end
  end
end