Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
jerrrycans/nfp
jerrrycans
/
tidal
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
tidal
/
app.py
jerrrycans
Create app.py
c35ff57
verified
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
116 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
async
def
root
():
return
{
"message"
:
"Hello World"
}