1
0
Fork 0
forked from sr2/cloud-api
cloud-api/src/auth/router.py

11 lines
149 B
Python
Raw Normal View History

2026-04-06 12:41:49 +01:00
"""
Router endpoints for auth module
Contains oauth registration
Endpoints:
"""
from fastapi import APIRouter
router = APIRouter(
tags=["auth"],
)