16 lines
229 B
Python
16 lines
229 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
@app.get("/")
|
|
def root():
|
|
return {
|
|
"message": "Pozdrav svijete!",
|
|
"autor": "iva"
|
|
}
|
|
|
|
@app.get("/health")
|
|
def health():
|
|
return {
|
|
"status": "ok"
|
|
} |