Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Projetweb
/
AiServices
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8b3885d
AiServices
/
static
/
app.py
rayhane
Fix deployment
8b3885d
about 2 months ago
raw
Copy download link
history
blame
Safe
Wrap lines
118 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
home
():
return
{
"message"
:
"Hello, Huging Face!"
}