20 lines
365 B
Python
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()
|