init
This commit is contained in:
commit
ac39206625
58 changed files with 1814 additions and 0 deletions
13
src/_module_template/router.py
Normal file
13
src/_module_template/router.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
"""
|
||||
Router endpoints for <this module>
|
||||
|
||||
Endpoints:
|
||||
- List: Description
|
||||
- Endpoints: Description
|
||||
"""
|
||||
from fastapi import APIRouter
|
||||
|
||||
|
||||
_router = APIRouter(
|
||||
tags=[""],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue