from fastapi import FastAPI
app = FastAPI()
@app.get('/')
async def root():
return {
"message": "Get Hello World"
}
@app.post('/')
async def root():
return {
"message": "Post Hello World"
}
# @app.put('/')
# @app.delete('/')
# 启动: uvicorn main:app --reload