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