Files
priprema-za-kolokvi/app/main.py
ITO Mac c8cd541348 init
2026-05-26 10:23:44 +02:00

11 lines
203 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"message": "Pozdrav svijete!", "autor": "VAŠ_KORISNIK"}
@app.get("/health")
def health():
return {"status": "ok"}