Files
priprema-za-kolokvij/app/main.py
2026-06-25 01:03:10 +02:00

11 lines
199 B
Python

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