Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gowdaman
/
ai-saas
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
ai-saas
/
main.py
gowdaman
new
e63d23a
12 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
154 Bytes
from
fastapi
import
FastAPI
import
uvicorn
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"message"
:
"Welcome to the FastAPI application!"
}