mirror of
https://github.com/django-components/django-components.git
synced 2025-07-13 11:54:59 +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()
|