8 lines
137 B
Python
8 lines
137 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class EventConfig(AppConfig):
|
|
name = 'event'
|
|
|
|
def ready(self):
|
|
from . import signals
|