16 lines
170 B
Python
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"}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|