allnet: add download order infrastructure

This commit is contained in:
2023-04-23 19:00:30 -04:00
parent 26c4bcb466
commit 47f4aaddf8
3 changed files with 48 additions and 3 deletions

View File

@ -188,6 +188,11 @@ class AllnetConfig:
self.__config, "core", "allnet", "allow_online_updates", default=False
)
@property
def update_cfg_folder(self) -> str:
return CoreConfig.get_config_field(
self.__config, "core", "allnet", "update_cfg_folder", default=""
)
class BillingConfig:
def __init__(self, parent_config: "CoreConfig") -> None: