Files
priprema-za-kol/app/main.py
2026-06-24 19:15:54 +02:00

12 lines
199 B
Python

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