mirror of
				https://github.com/usmannasir/cyberpanel.git
				synced 2025-10-31 10:26:01 +01:00 
			
		
		
		
	
		
			
	
	
		
			12 lines
		
	
	
		
			245 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			245 B
		
	
	
	
		
			Python
		
	
	
	
	
	
|  | # -*- coding: utf-8 -*- | ||
|  | from django.apps import AppConfig | ||
|  | 
 | ||
|  | 
 | ||
|  | class TestPluginConfig(AppConfig): | ||
|  |     name = 'testPlugin' | ||
|  |     verbose_name = 'Test Plugin' | ||
|  |      | ||
|  |     def ready(self): | ||
|  |         # Import signal handlers | ||
|  |         import testPlugin.signals |