generated _collections class

This commit is contained in:
bdrtr 2025-05-07 20:15:51 +03:00
parent 842c127817
commit 938f950646
6 changed files with 132 additions and 13 deletions

8
_collections/router.py Normal file
View file

@ -0,0 +1,8 @@
from fastapi import FastAPI, APIRouter
router = APIRouter(
prefix="/collections",
tags=["collections"],
responses={404: {"description": "Not found"}},
dependencies=[],
)