Версия 1.0

This commit is contained in:
Whyverum
2025-05-20 09:12:05 +07:00
commit 0b3b957c0a
34 changed files with 1964 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
from aiogram import Router
from .start_cmd import router as start_cmd_router
__all__ = ('router',)
router = Router(name="post_router")
router.include_routers(start_cmd_router,)