republisher/repub/pages/__init__.py
Abel Luck 96551c2788
All checks were successful
buildbot/nix-eval Build done.
buildbot/nix-build Build done.
buildbot/nix-effects Build done.
Add trusted header auth and publisher shell
2026-06-01 18:11:23 +02:00

19 lines
596 B
Python

from repub.pages.dashboard import dashboard_page, dashboard_page_with_data
from repub.pages.publisher import publisher_page
from repub.pages.runs import execution_logs_page, runs_page
from repub.pages.settings import settings_page
from repub.pages.shim import shim_page
from repub.pages.sources import create_source_page, edit_source_page, sources_page
__all__ = [
"create_source_page",
"dashboard_page",
"dashboard_page_with_data",
"edit_source_page",
"execution_logs_page",
"publisher_page",
"runs_page",
"settings_page",
"shim_page",
"sources_page",
]