10 lines
254 B
Python
10 lines
254 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class CustomsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'api.customs'
|
|
|
|
def ready(self):
|
|
# corregir el import aqui
|
|
import api.customs.signals.procesamiento |