Added centralized templating system with static asset serving.
CI / Formatting (push) Successful in 13s
CI / Linting (push) Successful in 14s
CI / Tests (Python 3.12) (push) Failing after 29s
CI / Tests (Python 3.13) (push) Failing after 29s
CI / Tests (Python 3.14) (push) Failing after 26s
CI / Type Checking (push) Failing after 25s
CI / Spelling (push) Successful in 13s

This commit is contained in:
2026-02-27 10:05:52 -05:00
parent 4e2c8b4d67
commit 410c0cd791
14 changed files with 238 additions and 152 deletions
+4
View File
@@ -109,6 +109,9 @@ from .routes import (
# Storage API.
from .storage import ModuleStorage, StorageError
# Template rendering.
from .templates import ModuleTemplates
__all__ = [
"ChatEvent",
"CommandContext",
@@ -128,6 +131,7 @@ __all__ = [
"ModuleEvents",
"ModuleRoutes",
"ModuleStorage",
"ModuleTemplates",
"NameChangedEvent",
"OwncastAdminClient",
"OwncastClient",