mirror of
https://github.com/openspug/spug.git
synced 2026-01-25 15:02:04 +00:00
9 lines
142 B
Python
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),
|
|
]
|