mirror of https://github.com/jumpserver/jumpserver
				
				
				
			
		
			
				
	
	
		
			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
 |