12 lines
211 B
Python
12 lines
211 B
Python
|
from importlib import import_module
|
||
|
|
||
|
from django.apps import AppConfig as BaseAppConfig
|
||
|
|
||
|
|
||
|
class AppConfig(BaseAppConfig):
|
||
|
|
||
|
name = "pinaxcon"
|
||
|
|
||
|
def ready(self):
|
||
|
import_module("pinaxcon.receivers")
|