Files
priprema-za-kolokvij/app/main.py
2026-06-05 19:56:02 +02:00

15 lines
319 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"message": "Pozdrav svijete! (v2)", "autor": "Dinko Galic"}
@app.get("/health")
def health():
return {"status": "ok", "version": "2.0"}
@app.get("/info")
def info():
return {"servis": "priprema-za-kolokvij", "verzija": "2.0"}