analytics / shared /__init__.py
GitHub Action
Deploy analytics from e28872748e63c7413a718770d3f14cb198801702
c939d66
Raw
History Blame Contribute Delete
447 Bytes
"""Shared components for the Gradio Spaces ecosystem."""
# Support both local and HF Spaces imports
try:
from apps.shared.ui_components import get_navbar_links, create_footer
from apps.shared.custom_components import AppBase
except ImportError:
from shared.ui_components import get_navbar_links, create_footer
from shared.custom_components import AppBase
__all__ = [
"get_navbar_links",
"create_footer",
"AppBase",
]