Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ajeetraina
/
Collabnix
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Collabnix
/
main.py
Ajeet Singh Raina
Added
4893c5f
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}