We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00dd327 commit a2e12baCopy full SHA for a2e12ba
app/routers/__init__.py
@@ -1,3 +1,4 @@
1
"""app.routers"""
2
+from .info import API_INFO
3
from .v1 import V1
4
from .v2 import V2
app/routers/info.py
@@ -0,0 +1,9 @@
+"""app.routers.info"""
+from fastapi import APIRouter
+from pydantic import BaseModel
+
5
+API_INFO = APIRouter()
6
7
8
+class Info(BaseModel):
9
+ pass
0 commit comments