Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
amanmibra
/
void-demo-aisf
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
149c71b
void-demo-aisf
/
server
/
main.py
amanmibra
Init api server
661fd4d
almost 2 years ago
raw
Copy download link
history
blame
117 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
async
def
root
():
return
{
"message"
:
"Hello World"
}