jumpserver/apps/ops/task_handlers/change_auth/manager.py

13 lines
295 B
Python
Raw Normal View History

2022-09-07 11:49:42 +00:00
# -*- coding: utf-8 -*-
#
from common.utils import get_logger
from ..base import BaseExecutionManager
from .handlers import ChangeAuthHandler
logger = get_logger(__name__)
class ChangeAuthExecutionManager(BaseExecutionManager):
def get_handler_cls(self):
return ChangeAuthHandler