20 lines
433 B
Python
20 lines
433 B
Python
from config.dtype.others import ArchMgrTemplateData
|
|
|
|
|
|
class ArchMgrTemplates:
|
|
pkg_bundles: dict[str, list[str]]
|
|
bootloader_config: list[BootLoaderSettings]
|
|
theme_templates: dict[str, list[ArchMgrTemplateData]]
|
|
|
|
|
|
class BootLoaderSettings:
|
|
# Used to render the included template files
|
|
templates: list[ArchMgrTemplateData]
|
|
theme_folder: str
|
|
conf_build_cmd: str
|
|
name: str
|
|
|
|
|
|
def load_templates():
|
|
pass
|