leaflink-ask / main.py
suneeln-duke's picture
Testing
63e09a2
raw
history blame
116 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/hello")
def hello():
return {"message": "Hello World"}