mirror of
https://github.com/MrSedan/neuro-reply-bot-reworked.git
synced 2026-01-14 21:49:42 +03:00
18 lines
502 B
Python
18 lines
502 B
Python
from aiogram import Bot
|
|
|
|
from handlers.handler import Handler
|
|
from handlers.message_handlers.forward_message import ForwardMessageCommand
|
|
from handlers.message_handlers.start_command import StartCommand
|
|
from neuroapi.types import BotSettings as BotSettingsType
|
|
|
|
|
|
class UserCommands(Handler):
|
|
settings: BotSettingsType
|
|
|
|
def __init__(self, bot: Bot) -> None:
|
|
super().__init__(bot)
|
|
|
|
self.add_handlers([
|
|
StartCommand,
|
|
ForwardMessageCommand
|
|
]) |