python-model / main.py
syWhut's picture
Update main.py
0893d47
raw
history blame contribute delete
133 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
num_test="<h1>hello world!</h1>"
return num_test