Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ianluo
/
coastguard
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8fc9dd0
coastguard
/
main.py
ianluo
update
3c97fa1
about 2 years ago
raw
Copy download link
history
blame
Safe
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World"
}