Files
priprema-za-kolokvij/app/main.py
2026-05-26 09:06:33 +00:00

22 lines
376 B
Python

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