cloud-api/src/contact/router.py
2026-05-28 11:22:47 +01:00

10 lines
No EOL
140 B
Python

"""
Router endpoints for the contact module
"""
from fastapi import APIRouter
router = APIRouter(
prefix="/contact",
tags=["contact"],
)