mirror of
https://github.com/Redume/StarBoard.git
synced 2025-04-07 04:05:28 +01:00
8 lines
No EOL
261 B
Python
8 lines
No EOL
261 B
Python
from aiogram import Dispatcher
|
|
from events import join_chat, reactions
|
|
from commands import set_channel
|
|
|
|
def setup_routers(dp: Dispatcher):
|
|
dp.include_router(reactions.router)
|
|
dp.include_router(join_chat.router)
|
|
dp.include_router(set_channel.router) |