10 lines
205 B
Python
10 lines
205 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class InventoryConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "inventory"
|
|
|
|
def ready(self):
|
|
import inventory.signals
|