Create Thüringen branding edition on shared core

This commit is contained in:
pan
2026-07-05 22:38:59 +02:00
commit ff53f88f35
19 changed files with 359 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
"""Entry point for the Thüringen edition."""
from __future__ import annotations
from synadm_tui.cli import main as core_main
from .theme import THURINGIA_EDITION, THURINGIA_THEME
def main(argv: list[str] | None = None) -> int:
return core_main(argv, edition=THURINGIA_EDITION, extra_themes=(THURINGIA_THEME,))