cloud-api/src/contact/router.py
luxferre c689ac1e10 minor: ruff formatter
All changes are either:
- Correcting tabs
- Adding/removing line breaks
- Adding trailing commas
2026-06-08 15:31:37 +01:00

11 lines
142 B
Python

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