new database system

This commit is contained in:
bdrtr 2025-05-14 16:31:46 +03:00
parent 039b877241
commit bf71979982
8 changed files with 92 additions and 124 deletions

View file

@ -1,7 +1,7 @@
from .config import app
from .auth.router import router as auth_router
from .items.router import router as items_router
from ._collections.router import router as collections_router
from .collectionObj.router import router as collections_router
app.include_router(auth_router)
app.include_router(collections_router)