12 lines
268 B
Python
12 lines
268 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class AppConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'app'
|
|
|
|
def ready(self):
|
|
import app.workflow_actions
|
|
|
|
from . import signals
|
|
signals.connect_signals() |