Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kevinkal
/
ppt
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
ppt
/
app.py
kevinkal
Update app.py
5d27506
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
200 Bytes
from
fastapi
import
FastAPI
from
routers
import
powerpoint
app = FastAPI(title=
"STX DEV API"
)
@app.get(
"/"
)
def
hello
():
return
{
"message"
:
"Hello World!"
}
app.include_router(powerpoint.router)