mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-05 12:55:44 +01:00
12 lines
211 B
Python
12 lines
211 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
from __future__ import unicode_literals
|
||
|
|
|
||
|
|
from django.apps import AppConfig
|
||
|
|
|
||
|
|
|
||
|
|
class ExamplepluginConfig(AppConfig):
|
||
|
|
name = 'examplePlugin'
|
||
|
|
|
||
|
|
def ready(self):
|
||
|
|
import signals
|