generated _collections class
This commit is contained in:
parent
842c127817
commit
938f950646
6 changed files with 132 additions and 13 deletions
8
_collections/router.py
Normal file
8
_collections/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