13 lines
662 B
Python
13 lines
662 B
Python
from .feedback import FeedbackBotModuleConfig
|
|
from .overlay import OverlayBotModuleConfig
|
|
from .channel_helper import ChannelHelperBotModuleConfig, QueuedItem
|
|
from .echo import EchoBotModuleConfig
|
|
from .cyberlina import CyberLinaBotModuleConfig
|
|
from .ping import PingBotModuleConfig
|
|
from .robot import RobotBotModuleConfig
|
|
from .spoiler import SpoilerBotModuleConfig
|
|
from .stickers import StickersBotModuleConfig
|
|
|
|
BOT_MODULES = [EchoBotModuleConfig, ChannelHelperBotModuleConfig, OverlayBotModuleConfig, CyberLinaBotModuleConfig,
|
|
PingBotModuleConfig, SpoilerBotModuleConfig, RobotBotModuleConfig, FeedbackBotModuleConfig, StickersBotModuleConfig]
|