mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-12-24 09:19:43 +01:00
Add better plugin description + new example plugin
Add better plugin description + new example plugin
This commit is contained in:
11
testPlugin/apps.py
Normal file
11
testPlugin/apps.py
Normal file
@@ -0,0 +1,11 @@
|
||||
# -*- 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
|
||||
Reference in New Issue
Block a user