Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pgsoft
/
fastapi
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0a5f589
fastapi
/
app.py
steveagi
init
0a5f589
over 2 years ago
raw
Copy download link
history
blame
113 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
async
def
root
():
return
{
"message"
:
"PGAI API"
}