forked from sr2/cloud-api
All changes are either: - Correcting tabs - Adding/removing line breaks - Adding trailing commas
12 lines
154 B
Python
12 lines
154 B
Python
"""
|
|
Router endpoints for the auth module
|
|
|
|
Exports:
|
|
- router: fastapi.APIRouter
|
|
"""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
router = APIRouter(
|
|
tags=["auth"],
|
|
)
|