8 lines
199 B
Python
8 lines
199 B
Python
|
from django.utils.translation import ugettext_lazy as _
|
||
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class AppConfig(AppConfig):
|
||
|
name = 'cas_server'
|
||
|
verbose_name = _('Central Authentication Service')
|