webhook_space / main.py
Saketh-Reddy's picture
Update main.py
ba0c441
raw history blame
No virus
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}