Added keys count on outline page.

This commit is contained in:
A B
2024-10-26 23:36:18 +00:00
parent 75126b09ff
commit dda9b4ba5a
4 changed files with 12 additions and 2 deletions

View File

@ -17,11 +17,12 @@ Including another URLconf
from django.contrib import admin
from django.urls import path, include
from django.views.generic import RedirectView
from vpn.views import shadowsocks
from vpn.views import shadowsocks, print_headers
urlpatterns = [
path('admin/', admin.site.urls),
path('ss/<path:link>', shadowsocks, name='shadowsocks'),
path('dynamic/<path:link>', shadowsocks, name='shadowsocks'),
path('headers/', print_headers, name='print_headers'),
path('', RedirectView.as_view(url='/admin/', permanent=False)),
]