2025-05-04 15:24:28 +03:30
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
|
|
|
|
|
2025-05-05 15:25:46 +03:30
|
|
|
class WarehouseConfig(AppConfig):
|
2025-05-04 15:24:28 +03:30
|
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
2025-05-05 15:25:46 +03:30
|
|
|
name = 'apps.warehouse'
|
2025-07-02 15:42:51 +03:30
|
|
|
|
|
|
|
|
def ready(self):
|
|
|
|
|
import apps.warehouse.signals
|