This commit is contained in:
Gary Kwok
2024-01-24 17:21:54 +08:00
commit 6ddd2f22e3
4 changed files with 48 additions and 0 deletions

9
app/main.py Normal file
View File

@@ -0,0 +1,9 @@
from typing import Union
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}