10 lines
167 B
Python
10 lines
167 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ShopConfig(AppConfig):
|
|
name = 'shop'
|
|
verbose_name = "商城管理"
|
|
|
|
def ready(self):
|
|
import shop.signals
|