telegram_bots/bots/modules/__init__.py

6 lines
242 B
Python
Raw Normal View History

2019-11-24 16:29:52 +00:00
from .overlay import OverlayBotModuleConfig
from .channel_helper import ChannelHelperBotModuleConfig, QueuedItem
2019-11-12 17:13:56 +00:00
from .echo import EchoBotModuleConfig
BOT_MODULES = [EchoBotModuleConfig, ChannelHelperBotModuleConfig, OverlayBotModuleConfig]