11 lines
271 B
Python
11 lines
271 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
|
|
# Define a list of URL patterns to be imported by NetBox. Each pattern maps a URL to
|
|
# a specific view so that it can be accessed by users.
|
|
urlpatterns = (
|
|
path('', views.TopologyHomeView.as_view(), name='home'),
|
|
)
|