6 lines
242 B
Python
6 lines
242 B
Python
from bots.modules.overlay import OverlayBotModuleConfig
|
|
from .channel_helper import ChannelHelperBotModuleConfig
|
|
from .echo import EchoBotModuleConfig
|
|
|
|
BOT_MODULES = [EchoBotModuleConfig, ChannelHelperBotModuleConfig, OverlayBotModuleConfig]
|