republisher/repub/pages/__init__.py

16 lines
457 B
Python
Raw Normal View History

2026-03-30 14:02:39 +02:00
from repub.pages.dashboard import dashboard_page, dashboard_page_with_data
2026-03-30 13:11:37 +02:00
from repub.pages.runs import execution_logs_page, runs_page
2026-03-30 12:27:45 +02:00
from repub.pages.shim import shim_page
2026-03-30 13:49:00 +02:00
from repub.pages.sources import create_source_page, edit_source_page, sources_page
2026-03-30 12:27:45 +02:00
2026-03-30 13:11:37 +02:00
__all__ = [
"create_source_page",
"dashboard_page",
2026-03-30 14:02:39 +02:00
"dashboard_page_with_data",
2026-03-30 13:49:00 +02:00
"edit_source_page",
2026-03-30 13:11:37 +02:00
"execution_logs_page",
"runs_page",
"shim_page",
"sources_page",
]