feat: 初始化项目

This commit is contained in:
eric
2022-12-14 14:08:01 +08:00
parent 728e170725
commit 360e27457b
4 changed files with 103 additions and 0 deletions

8
app/main.py Normal file
View File

@@ -0,0 +1,8 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}