generated from westfarn/web_django_template
13 lines
270 B
Python
13 lines
270 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class DirectmailConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "directmail"
|
|
verbose_name = "Direct mail"
|
|
|
|
def ready(self):
|
|
from directmail import hooks
|
|
|
|
hooks.register()
|