Files
manifesti/app/main.py

11 lines
176 B
Python

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