feat(config): Config loading and merging
This commit is contained in:
@@ -2,8 +2,8 @@ from typing import Optional, TypedDict
|
||||
|
||||
|
||||
class ArchMgrCmdsConfig(TypedDict):
|
||||
always: list[ArchMgrCommand]
|
||||
once: list[ArchMgrCommand]
|
||||
always: Optional[list[ArchMgrCommand]]
|
||||
once: Optional[list[ArchMgrCommand]]
|
||||
|
||||
|
||||
class ArchMgrCommand(TypedDict):
|
||||
|
||||
Reference in New Issue
Block a user