9 lines
269 B
Python
9 lines
269 B
Python
|
from django.apps import AppConfig
|
||
|
from django.utils.translation import gettext as _
|
||
|
|
||
|
|
||
|
class AuthConfig(AppConfig):
|
||
|
default_auto_field = 'django.db.models.BigAutoField'
|
||
|
name = 'nervtn.server.apps.auth'
|
||
|
verbose_name = _('Nerv Tales Network - Authentication')
|