Add Django AppConfig

This commit is contained in:
medmunds
2018-02-07 12:47:06 -08:00
parent 3468b12cc0
commit 4d34a181b6
2 changed files with 12 additions and 0 deletions

9
anymail/apps.py Normal file
View File

@@ -0,0 +1,9 @@
from django.apps import AppConfig
class AnymailBaseConfig(AppConfig):
name = 'anymail'
verbose_name = "Anymail"
def ready(self):
pass