feat: add subscribtion scheduler with ai, pagination

This commit is contained in:
Faynot
2026-03-29 11:25:31 +03:00
parent 1db524f757
commit 164acd6307
16 changed files with 688 additions and 358 deletions

5
handlers/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
from .common import router as common_router
from .registration import router as reg_router
from .search import router as search_router
routers = [reg_router, common_router, search_router]