9 lines
223 B
Python
9 lines
223 B
Python
__author__ = 'zhugl'
|
|
# created at 15-4-22
|
|
from django.apps.config import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class SysConfig(AppConfig):
|
|
name = 'syscfg'
|
|
verbose_name = _('SysConfig') |