9 lines
106 B
Python
9 lines
106 B
Python
import fastapi
|
|
|
|
app = fastapi.FastAPI()
|
|
|
|
|
|
@app.get("/")
|
|
def alive():
|
|
"""Live check."""
|
|
return 200
|