mirror of
https://github.com/task-17-lct/backend.git
synced 2024-11-15 01:56:34 +03:00
9 lines
169 B
Python
9 lines
169 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class EventsConfig(AppConfig):
|
||
|
name = "passfinder.events"
|
||
|
|
||
|
def ready(self):
|
||
|
import passfinder.events.signals # noqa
|