added RAG, Multiuser, TG bot
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
from aiogram import Router
|
||||
|
||||
from bot.handlers.auth import router as auth_router
|
||||
from bot.handlers.chat import router as chat_router
|
||||
from bot.handlers.commands import router as commands_router
|
||||
from bot.handlers.start import router as start_router
|
||||
|
||||
router = Router()
|
||||
router.include_router(start_router)
|
||||
router.include_router(auth_router)
|
||||
router.include_router(commands_router)
|
||||
router.include_router(chat_router)
|
||||
Reference in New Issue
Block a user