Версия 1.0
This commit is contained in:
10
BotCode/handlers/post/__init__.py
Normal file
10
BotCode/handlers/post/__init__.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from aiogram import Router
|
||||
from .create_posts import router as posts_router
|
||||
from .post_list import router as post_list_router
|
||||
|
||||
router = Router(name="post_router")
|
||||
|
||||
router.include_routers(
|
||||
posts_router,
|
||||
post_list_router,
|
||||
)
|
||||
Reference in New Issue
Block a user