mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 13:31:08 -05:00
10 lines
243 B
Python
10 lines
243 B
Python
from django.apps import AppConfig
|
|
|
|
class CompaniesConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'companies'
|
|
verbose_name = 'Companies'
|
|
|
|
def ready(self):
|
|
import companies.signals # noqa
|