Files
priprema-za-kolokvij/app/main.py
2026-05-26 10:58:12 +02:00

10 lines
201 B
Python

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