9 lines
No EOL
209 B
Python
9 lines
No EOL
209 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
|
|
from ..views.base import BaseAuthenticationView
|
|
|
|
|
|
urlpatterns = [
|
|
path("GNL_API_AUTHENTICATION", BaseAuthenticationView.as_view()),
|
|
] |