Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
lazarr19
/
prompt-engine
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0b497e7
prompt-engine
/
backend
/
main.py
Lazar Radojevic
refactor everything
1cd5053
about 1 year ago
raw
Copy download link
history
blame
Safe
169 Bytes
from
fastapi
import
FastAPI
from
backend.routes
import
router
# Initialize FastAPI
app = FastAPI()
# Include routes from the routes module
app.include_router(router)