This repository has been archived on 2025-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
Starboard/routers.py

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)