8 lines
139 B
Python
8 lines
139 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI(title="Card Game Backend")
|
|
|
|
@app.get("/health")
|
|
def health_check():
|
|
return {"status": "ok"}
|