nextbot / app.py
sh20raj's picture
Add initial Dockerfile, FastAPI app, and requirements
135fdce
raw
history blame
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}