mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-06 21:35:55 +01:00
12 lines
400 B
Python
Executable File
12 lines
400 B
Python
Executable File
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) |