separeate pages

This commit is contained in:
Abel Luck 2026-03-30 13:11:37 +02:00
parent 3fc999a69b
commit 9e826fcee8
9 changed files with 1376 additions and 924 deletions

View file

@ -1,4 +1,13 @@
from repub.pages.dashboard import admin_component
from repub.pages.dashboard import dashboard_page
from repub.pages.runs import execution_logs_page, runs_page
from repub.pages.shim import shim_page
from repub.pages.sources import create_source_page, sources_page
__all__ = ["admin_component", "shim_page"]
__all__ = [
"create_source_page",
"dashboard_page",
"execution_logs_page",
"runs_page",
"shim_page",
"sources_page",
]