You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
193 B

  1. import importlib
  2. from django.apps import AppConfig
  3. class ApiConfig(AppConfig):
  4. name = 'api'
  5. verbose_name = 'Api'
  6. def ready(self):
  7. importlib.import_module('api.signals')