Files
codebox/backend/custom_auth/urls.py
2023-05-12 07:31:04 +03:00

8 lines
185 B
Python

from django.urls import path, include
from custom_auth import views
urlpatterns = [
path('', include('rest_framework.urls')),
path('token/', views.CustomAuthToken.as_view())
]