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