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...
52fd207
fastapi1
/
app.py
Kabila22
first commit
0b79e8d
10 months ago
raw
Copy download link
history
blame
196 Bytes
from
fastapi
import
FastAPI
from
app.routes
import
continent_routes
app = FastAPI()
app.include_router(continent_routes.router)
@app.get(
"/"
)
def
home
():
return
{
"message"
:
"Welcome home"
}