feat: add scoped NetBox ZIP export and import plugin

This commit is contained in:
2026-08-05 11:22:47 +02:00
commit d0db98b690
23 changed files with 1811 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from django.urls import path
from . import views
app_name = "netbox_export"
urlpatterns = [
path("", views.DashboardView.as_view(), name="dashboard"),
]