Files
Marco Verleun 17809c992c GO
2022-05-19 12:15:11 +02:00

17 lines
246 B
Python

from fastapi import FastAPI, Response
import os
name = os.getenv("HELLO_NAME", "unknown")
api = FastAPI()
@api.get("/hello")
async def hello():
return f"Hello {name}!!!"
@api.get("/healthz")
async def healthz():
return "OK"