ZeroGPU-test / app.py
zhenyundeng
update app.py
12b19b8
raw
history blame
190 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=7860)