mirror of
https://github.com/django-components/django-components.git
synced 2025-07-18 22:05:00 +00:00
8 lines
159 B
Python
8 lines
159 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ComponentsConfig(AppConfig):
|
|
name = "django_components"
|
|
|
|
def ready(self):
|
|
self.module.autodiscover()
|