9 lines
161 B
Python
9 lines
161 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class EmailsConfig(AppConfig):
|
|
name = 'emails'
|
|
|
|
def ready(self) -> None:
|
|
import emails.signals # noqa: F401
|