Files
CyberPanel/dockerManager/signals.py

11 lines
346 B
Python
Raw Normal View History

2019-01-07 13:11:12 +00:00
# The world is a prison for the believer.
## https://www.youtube.com/watch?v=DWfNYztUM1U
from django.dispatch import Signal
## This event is fired before CyberPanel core start installation of Docker
2024-08-04 23:54:32 +05:00
preDockerInstallation = Signal()
2019-01-07 13:11:12 +00:00
## This event is fired after CyberPanel core finished intallation of Docker.
2024-08-04 23:54:32 +05:00
postDockerInstallation = Signal()