12 lines
152 B
Python
12 lines
152 B
Python
"""
|
|
Router endpoints for the <this> module
|
|
|
|
Exports:
|
|
- router: fastapi.APIRouter
|
|
"""
|
|
from fastapi import APIRouter
|
|
|
|
|
|
router = APIRouter(
|
|
tags=[""],
|
|
)
|