Spaces:
Sleeping
Sleeping
from fastapi import FastAPI | |
app = FastAPI() | |
def read_root(): | |
num_test="<h1>hello world!</h1>" | |
return num_test |
from fastapi import FastAPI | |
app = FastAPI() | |
def read_root(): | |
num_test="<h1>hello world!</h1>" | |
return num_test |