Files
moj-servis/app/main.py
2026-03-31 09:57:04 +02:00

13 lines
178 B
Python

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