You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SoulSync/core/webui/__init__.py

20 lines
494 B

"""WebUI delivery helpers."""
from core.webui.assets import (
build_webui_vite_assets,
clear_webui_vite_manifest_cache,
default_static_url_builder,
get_webui_vite_manifest_path,
load_webui_vite_manifest,
)
from core.webui.spa import should_serve_webui_spa
__all__ = [
"build_webui_vite_assets",
"clear_webui_vite_manifest_cache",
"default_static_url_builder",
"get_webui_vite_manifest_path",
"load_webui_vite_manifest",
"should_serve_webui_spa",
]