mirror of
https://github.com/house-of-vanity/OutFleet.git
synced 2025-08-21 14:37:16 +00:00
7 lines
247 B
Python
7 lines
247 B
Python
from django.urls import path
|
|
from vpn.views import shadowsocks, xray_subscription
|
|
|
|
urlpatterns = [
|
|
path('ss/<str:hash_value>/', shadowsocks, name='shadowsocks'),
|
|
path('xray/<str:user_hash>/', xray_subscription, name='xray_subscription'),
|
|
] |