mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-04-04 03:12:38 +00:00
11 lines
183 B
Python
11 lines
183 B
Python
# coding:utf-8
|
|
from django.conf.urls import url
|
|
|
|
import views
|
|
|
|
app_name = 'terminal'
|
|
|
|
urlpatterns = [
|
|
url(r'^web-terminal$', views.TerminalView.as_view(), name='web-terminal'),
|
|
]
|