1
0
Fork 0
forked from sr2/cloud-api
cloud-api/src/auth/router.py
2026-05-28 11:22:47 +01:00

11 lines
No EOL
152 B
Python

"""
Router endpoints for the auth module
Exports:
- router: fastapi.APIRouter
"""
from fastapi import APIRouter
router = APIRouter(
tags=["auth"],
)