This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ipreuse-vpn-cgi/command/urls.py

7 lines
111 B
Python
Raw Normal View History

2018-12-04 15:41:58 +08:00
from django.urls import path
from . import views
urlpatterns = [
path('',views.command,name='command'),
]