This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
lain/module_base.rb

18 lines
240 B
Ruby
Raw Permalink Normal View History

module Lain
module Modules
class Base
2013-01-01 19:03:27 +01:00
def initialize(lain, config)
2013-01-02 01:13:29 +01:00
@lain = lain
2013-01-01 19:03:27 +01:00
@config = config
end
def on_message(muc, message)
end
2013-01-02 01:13:29 +01:00
def commands
{}
end
end
end
end