mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
17 lines
252 B
Python
17 lines
252 B
Python
from django.conf.urls import include, url
|
|
|
|
from rest_framework import routers
|
|
|
|
from . import views
|
|
|
|
|
|
router = routers.DefaultRouter()
|
|
|
|
router.register(r'topology-maps', views.TopologyMapViewSet)
|
|
|
|
urlpatterns = [
|
|
|
|
url(r'', include(router.urls)),
|
|
|
|
]
|