Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Kabila22
/
fastapi1
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2a8047a
fastapi1
/
app.py
Kabila22
second commit
2a8047a
10 months ago
raw
Copy download link
history
blame
Safe
193 Bytes
from
fastapi
import
FastAPI
from
.routes
import
continent_routes
app = FastAPI()
app.include_router(continent_routes.router)
@app.get(
"/"
)
def
home
():
return
{
"message"
:
"Welcome home"
}