Files
archmgr/archmgr/config/__init__.py
T
2026-06-13 10:41:51 +02:00

20 lines
365 B
Python

from .pkgs import ArchMgrPkgs
class ArchMgrConfig:
pkgs: ArchMgrPkgs
templates: object
modules: object
def __init__(self) -> None:
self.pkgs = ArchMgrPkgs()
def create_config():
"""Create a new ArchMgrConfig, or get the existing config, if one exists
Returns:
An ArchMgrConfig object
"""
return ArchMgrConfig()