Pathora / app.py
malavikapradeep2001's picture
Deploy Pathora Viewer: tile server, viewer components, and root app.py (#1)
1ff1e61
"""
Root-level FastAPI app entry point for Hugging Face Spaces
Imports and re-exports the tile server app from backend
"""
from backend.app import app
# This ensures uvicorn can find and run the app
__all__ = ["app"]