summaryrefslogtreecommitdiffstats
path: root/module_base.rb
blob: 500fd20a4f3cfc82acb01e6dca31254d9f8c8c3d (plain)
1
2
3
4
5
6
7
8
9
10
11
module Lain
  module Modules
    class Base
      def initialize(lain)
      end

      def on_message(muc, message)
      end
    end
  end
end