mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-04-10 14:25:07 +00:00
11 lines
227 B
Python
11 lines
227 B
Python
# coding:utf-8
|
|
from django.conf.urls import url
|
|
from .views import *
|
|
from django.contrib import admin
|
|
admin.autodiscover()
|
|
|
|
app_name = 'webterminal'
|
|
|
|
urlpatterns = [
|
|
url(r'^$', TerminalView.as_view(), name='webterminal'),
|
|
] |