9 lines
176 B
Python
9 lines
176 B
Python
from __future__ import annotations
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ShopConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "shop"
|