cloud-api/src/_module_template/router.py

13 lines
152 B
Python
Raw Normal View History

2026-04-06 12:41:49 +01:00
"""
2026-05-28 15:41:10 +01:00
Router endpoints for the <this> module
2026-04-06 12:41:49 +01:00
2026-05-28 15:41:10 +01:00
Exports:
- router: fastapi.APIRouter
2026-04-06 12:41:49 +01:00
"""
from fastapi import APIRouter
2026-05-28 15:41:10 +01:00
router = APIRouter(
2026-04-06 12:41:49 +01:00
tags=[""],
2026-05-28 15:41:10 +01:00
)