mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-07-03 15:50:28 +00:00
8 lines
138 B
Python
8 lines
138 B
Python
from . import views
|
|
|
|
from django.urls import path
|
|
|
|
urlpatterns = [
|
|
path('login/', views.CertLoginView.as_view(), name='cert-login')
|
|
]
|