9 lines
237 B
Python
9 lines
237 B
Python
from fastapi import APIRouter, Depends, HTTPException
|
|
from core.auth import get_current_user_dummy
|
|
from core.database import fake_users_db
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/health")
|
|
async def read_health():
|
|
return {"status": "ok"} |