perf: gather accounts

This commit is contained in:
feng
2022-10-27 18:53:10 +08:00
parent 097ebc2362
commit 2355d1af83
28 changed files with 328 additions and 103 deletions

View File

@@ -1,8 +1,6 @@
# from .backup.manager import AccountBackupExecutionManager
#
#
from .change_secret.manager import ChangeSecretManager
from .gather_facts.manager import GatherFactsManager
from .gather_accounts.manager import GatherAccountsManager
from ..const import AutomationTypes
@@ -10,6 +8,7 @@ class ExecutionManager:
manager_type_mapper = {
AutomationTypes.change_secret: ChangeSecretManager,
AutomationTypes.gather_facts: GatherFactsManager,
AutomationTypes.gather_accounts: GatherAccountsManager,
}
def __init__(self, execution):