mirror of
				https://github.com/usmannasir/cyberpanel.git
				synced 2025-10-31 02:15:55 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			401 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			401 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from .signals import *
 | |
| from plogical.pluginManagerGlobal import pluginManagerGlobal
 | |
| 
 | |
| class pluginManager:
 | |
| 
 | |
|     @staticmethod
 | |
|     def preDockerInstallation(request):
 | |
|         return pluginManagerGlobal.globalPlug(request, preDockerInstallation)
 | |
| 
 | |
|     @staticmethod
 | |
|     def postDockerInstallation(request, response):
 | |
|         return pluginManagerGlobal.globalPlug(request, postDockerInstallation, response) |