2019-12-12 11:39:35 +08:00

9 lines
142 B
Python

from django.urls import path
from .views import *
urlpatterns = [
path('', HostView.as_view()),
path('ssh/<int:h_id>/', web_ssh),
]