15 lines
238 B
Python
15 lines
238 B
Python
import os
|
|
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
AUTOR = os.getenv("AUTOR", "nepoznat")
|
|
|
|
@app.get("/")
|
|
def root():
|
|
return {"message": "Kolokvij 2", "autor": AUTOR}
|
|
|
|
@app.get("/health")
|
|
def health():
|
|
return {"status": "ok"}
|