Files
PrimoWorldsBot/BotCode/servey/__init__.py

14 lines
454 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# BotCode/routers/servey/__init__.py
# Инициализация пакета servey, для работы с последствиями
from aiogram import Router
# Объявление роутера и настройка экспорта модулей
__all__ = ("router",)
router = Router(name="servey_head_router")
# Идет самым последним, если другие роутеры не сработали
router.include_routers(
)