mirror of
https://github.com/house-of-vanity/OutFleet.git
synced 2025-08-21 14:37:16 +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'),
|
||
|
]
|