Initial commit: abyssVpn project
- Tauri desktop app (apps/desktop) - Python Django API service (services/api) - Deployment scripts and docs
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
from django.contrib import admin
|
||||
from django.urls import include, path
|
||||
from django.http import JsonResponse
|
||||
|
||||
|
||||
def health(_request):
|
||||
return JsonResponse({"status": "ok"})
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
path("admin/", admin.site.urls),
|
||||
path("health/", health),
|
||||
path("auth/", include("accounts.urls")),
|
||||
path("vpn/", include("vpn.urls")),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user