diff --git a/lkeep/main.py b/lkeep/main.py index e69de29..1907c22 100644 --- a/lkeep/main.py +++ b/lkeep/main.py @@ -0,0 +1,8 @@ +from fastapi import FastAPI + +app = FastAPI() + + +@app.get("/") +async def index(): + return {"status": "It's ALIVE!"}