file_table_reader/routes/auth_router.py

16 lines
170 B
Python
Raw Normal View History

2025-11-06 07:23:24 +00:00
from fastapi import APIRouter
from core.config import API_VERSION
router = APIRouter()
@router.get("/login")
async def login():
return {"status": "success"}