mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-01-18 16:46:16 +00:00
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)
|