mirror of https://github.com/jumpserver/jumpserver
11 lines
249 B
Python
11 lines
249 B
Python
|
from .backup.manager import AccountBackupExecutionManager
|
||
|
|
||
|
|
||
|
class ExecutionManager:
|
||
|
manager_type = {
|
||
|
'backup': AccountBackupExecutionManager
|
||
|
}
|
||
|
|
||
|
def __new__(cls, execution):
|
||
|
return AccountBackupExecutionManager(execution)
|