7 lines
194 B
Python
7 lines
194 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class ENSAllauthConfig(AppConfig):
|
|
name = 'allauth_ens'
|
|
verbose_name = _("ENS Authentication")
|