mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-02-22 17:52:00 +00:00
10 lines
270 B
Python
10 lines
270 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
class DrfpasswordlessConfig(AppConfig):
|
|
name = 'djangopasswordlessknox'
|
|
verbose = _("DRF Passwordless")
|
|
|
|
def ready(self):
|
|
import djangopasswordlessknox.signals
|