9 lines
204 B
Python
9 lines
204 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
class EcommerceConfig(AppConfig):
|
||
|
default_auto_field = 'django.db.models.BigAutoField'
|
||
|
name = 'ecommerce'
|
||
|
|
||
|
def ready(self):
|
||
|
import ecommerce.signals
|