add feedback module

This commit is contained in:
2021-03-20 15:21:27 +03:00
parent ffc9c42370
commit f397545412
3 changed files with 90 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
from .feedback import FeedbackBotModuleConfig
from .overlay import OverlayBotModuleConfig
from .channel_helper import ChannelHelperBotModuleConfig, QueuedItem
from .echo import EchoBotModuleConfig
@@ -7,4 +8,4 @@ from .robot import RobotBotModuleConfig
from .spoiler import SpoilerBotModuleConfig
BOT_MODULES = [EchoBotModuleConfig, ChannelHelperBotModuleConfig, OverlayBotModuleConfig, CyberLinaBotModuleConfig,
PingBotModuleConfig, SpoilerBotModuleConfig, RobotBotModuleConfig]
PingBotModuleConfig, SpoilerBotModuleConfig, RobotBotModuleConfig, FeedbackBotModuleConfig]