8 lines
162 B
Python
8 lines
162 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class WebhooksConfig(AppConfig):
|
|
name = "apps.webhooks"
|
|
|
|
def ready(self):
|
|
from . import signals # noqa: F401
|