Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Detomo
/
naomi-app-api
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
aba3792
naomi-app-api
/
main.py
vumichien
Create main.py
aba3792
over 2 years ago
raw
Copy download link
history
blame
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}