20 lines
411 B
Python
20 lines
411 B
Python
from config.dtype.others import ArchMgrTemplateData
|
|
|
|
|
|
class ArchMgrTemplates:
|
|
pkg_bundles: dict[str, list[str]]
|
|
bootloader_config: BootLoaderSettings
|
|
theme_templates: ArchMgrTemplateData
|
|
repo_config: None # TODO: Define a good dtype here
|
|
|
|
|
|
class BootLoaderSettings:
|
|
templates: ArchMgrTemplateData
|
|
theme_folder: str
|
|
conf_build_cmd: str
|
|
name: str
|
|
|
|
|
|
def load_templates():
|
|
pass
|