new database system
This commit is contained in:
parent
de5d4292ed
commit
e065cf9d22
8 changed files with 92 additions and 124 deletions
8
collectionObj/router.py
Normal file
8
collectionObj/router.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
from fastapi import FastAPI, APIRouter
|
||||
|
||||
router = APIRouter(
|
||||
prefix="/collections",
|
||||
tags=["collections"],
|
||||
responses={404: {"description": "Not found"}},
|
||||
dependencies=[],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue