12 lines
198 B
Python
12 lines
198 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
@app.get("/")
|
|
def root():
|
|
return {"message": "Hello, World!", autor: "Dinko Galić"}
|
|
|
|
@app.get("/health")
|
|
def health():
|
|
return {"status": "ok"}
|