13 lines
168 B
Python
13 lines
168 B
Python
|
|
"""
|
||
|
|
Router endpoints for <this module>
|
||
|
|
|
||
|
|
Endpoints:
|
||
|
|
- List: Description
|
||
|
|
- Endpoints: Description
|
||
|
|
"""
|
||
|
|
from fastapi import APIRouter
|
||
|
|
|
||
|
|
|
||
|
|
_router = APIRouter(
|
||
|
|
tags=[""],
|
||
|
|
)
|