StyleExplorer / app.py
Adisri99's picture
Upload 12 files
c4a0359 verified
raw
history blame contribute delete
270 Bytes
"""
Entry point for Hugging Face Spaces deployment.
This file simply imports and exposes the FastAPI app from main.py.
"""
from main import app
# The app is already configured in main.py
# Hugging Face Spaces will automatically detect and serve this FastAPI app
#filler