11 lines
169 B
Python
11 lines
169 B
Python
from aiogram import Router
|
|
|
|
|
|
router = Router()
|
|
|
|
from . import (
|
|
tariff_manage, # noqa: F401
|
|
tariff_sorting, # noqa: F401
|
|
tariff_subgroups, # noqa: F401
|
|
)
|