mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-11-13 06:38:31 +00:00
13 lines
295 B
Python
13 lines
295 B
Python
# -*- 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
|