38277-vm/core/urls.py
Flatlogic Bot 7c25e47f16 Start
2026-02-07 21:07:29 +00:00

8 lines
237 B
Python

from django.urls import path
from . import views
urlpatterns = [
path("", views.home, name="home"),
path("integrations/", views.integrations, name="integrations"),
path("security/wipe/", views.wipe_data, name="wipe_data"),
]