11 lines
277 B
Python
11 lines
277 B
Python
from aiogram import Router
|
|
|
|
from . import users_bans, users_hwid, users_keys, users_manage
|
|
|
|
|
|
router = Router()
|
|
router.include_router(users_manage.router)
|
|
router.include_router(users_hwid.router)
|
|
router.include_router(users_keys.router)
|
|
router.include_router(users_bans.router)
|