9 lines
152 B
Python
9 lines
152 B
Python
from django.apps import AppConfig
|
|
import logging
|
|
logger = logging.getLogger("bornhack.%s" % __name__)
|
|
|
|
|
|
class ShopConfig(AppConfig):
|
|
name = 'shop'
|
|
|