mirror of
				https://github.com/jumpserver/jumpserver.git
				synced 2025-11-04 07:55:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			210 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			210 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import unicode_literals
 | 
						|
 | 
						|
from django.apps import AppConfig
 | 
						|
 | 
						|
 | 
						|
class PermsConfig(AppConfig):
 | 
						|
    name = 'perms'
 | 
						|
 | 
						|
    def ready(self):
 | 
						|
        super().ready()
 | 
						|
        from . import signals_handler
 |