mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-23 01:57:00 +03:00
8 lines
199 B
Python
8 lines
199 B
Python
|
from django.apps import AppConfig
|
||
|
from django.utils.translation import ugettext_lazy as _
|
||
|
|
||
|
|
||
|
class AuthTokenConfig(AppConfig):
|
||
|
name = 'rest_framework.authtoken'
|
||
|
verbose_name = _("Auth Token")
|