later / app.py
GVAmaresh
dev: built for ref
f7332b9
raw
history blame
210 Bytes
from fastapi import FastAPI
import uvicorn
app = FastAPI()
@app.get("/")
def read_root():
return {"message": "Hello, FastAPI!"}
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=1200)