7 lines
195 B
Python
7 lines
195 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class CommunicationConfig(AppConfig):
|
|
name = 'communication'
|
|
verbose_name = _("Communication")
|