12 lines
323 B
Python
12 lines
323 B
Python
from aiogram import Router
|
|
|
|
from . import bulk, create, manage
|
|
|
|
promo_router_aggregate = Router(name="promo_features_router")
|
|
|
|
promo_router_aggregate.include_router(create.router)
|
|
promo_router_aggregate.include_router(manage.router)
|
|
promo_router_aggregate.include_router(bulk.router)
|
|
|
|
__all__ = ("promo_router_aggregate",)
|