Files

27 lines
472 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"}
@app.get("/info")
def info():
return {"servis": "priprema-za-kolokvij", "verzija": "2.0"}