7 lines
140 B
Python
7 lines
140 B
Python
from django.urls import path
|
|
from ...api_views.auth.views import LoginAPIView
|
|
|
|
|
|
urlpatterns = [
|
|
path('login/', LoginAPIView.as_view())
|
|
] |