9 lines
144 B
Python
Executable File
9 lines
144 B
Python
Executable File
from django.apps import AppConfig
|
|
|
|
|
|
class AppBaseConfig(AppConfig):
|
|
name = 'app.base'
|
|
|
|
def ready(self):
|
|
import app.base.signals
|