mirror of
https://github.com/house-of-vanity/OutFleet.git
synced 2025-07-07 17:34:07 +00:00
6 lines
148 B
Python
6 lines
148 B
Python
![]() |
from django.urls import path
|
||
|
from vpn.views import shadowsocks
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('ss/<str:hash_value>/', shadowsocks, name='shadowsocks'),
|
||
|
]
|