file_table_reader/routes/auth_router.py
2025-11-06 14:23:24 +07:00

16 lines
170 B
Python

from fastapi import APIRouter
from core.config import API_VERSION
router = APIRouter()
@router.get("/login")
async def login():
return {"status": "success"}