9 lines
145 B
Python
9 lines
145 B
Python
|
from importlib import import_module
|
||
|
|
||
|
from django.apps import AppConfig as BaseAppConfig
|
||
|
|
||
|
|
||
|
class AppConfig(BaseAppConfig):
|
||
|
|
||
|
name = "pinaxcon"
|