Files
priprema-za-kolokvi/app/main.py
ITO Mac d4faf05bcb update
2026-05-26 10:37:25 +02:00

15 lines
321 B
Python

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