10 lines
210 B
Python
10 lines
210 B
Python
from __future__ import unicode_literals
|
|
|
|
from django import apps
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class StorageApp(apps.AppConfig):
|
|
name = 'storage'
|
|
verbose_name = _('Storage')
|