sms-filter / app.py
vimal-yuvabe's picture
Upload 3 files
4defeb1 verified
raw
history blame
114 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}