summaryrefslogtreecommitdiffstats
path: root/module_base.rb
diff options
context:
space:
mode:
Diffstat (limited to 'module_base.rb')
-rw-r--r--module_base.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/module_base.rb b/module_base.rb
index 01d3f74..b209e7b 100644
--- a/module_base.rb
+++ b/module_base.rb
@@ -2,11 +2,16 @@ module Lain
module Modules
class Base
def initialize(lain, config)
+ @lain = lain
@config = config
end
def on_message(muc, message)
end
+
+ def commands
+ {}
+ end
end
end
end