8 lines
289 B
Python
8 lines
289 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext as _
|
|
|
|
|
|
class PrivacyConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'nervtn.server.apps.privacy'
|
|
verbose_name = _('Nerv Tales Network - Privacy management and tools')
|