aboutsummaryrefslogtreecommitdiff
path: root/handlers/__init__.py
diff options
context:
space:
mode:
authorTolmachev Igor <me@igorek.dev>2026-03-22 19:56:47 +0300
committerTolmachev Igor <me@igorek.dev>2026-03-22 20:19:27 +0300
commit536d022e8a55f6e53f01dfb7e0fae2ef24385aad (patch)
tree721d7195db7fc12c725b27301f77e345df64d1b4 /handlers/__init__.py
downloadvpn_manager_bot-536d022e8a55f6e53f01dfb7e0fae2ef24385aad.tar.gz
vpn_manager_bot-536d022e8a55f6e53f01dfb7e0fae2ef24385aad.zip
Init project
Diffstat (limited to 'handlers/__init__.py')
-rw-r--r--handlers/__init__.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/handlers/__init__.py b/handlers/__init__.py
new file mode 100644
index 0000000..92143c9
--- /dev/null
+++ b/handlers/__init__.py
@@ -0,0 +1,11 @@
1# isort: off
2from aiogram import Router
3from . import user
4from . import admin
5# isort: on
6
7router = Router(name="global")
8router.include_routers(
9 user.router,
10 admin.router,
11)