10 lines
221 B
Python
10 lines
221 B
Python
|
from netbox.api.routers import NetBoxRouter
|
||
|
from . import views
|
||
|
|
||
|
app_name = 'dnac_integration'
|
||
|
|
||
|
router = NetBoxRouter()
|
||
|
router.register('dnac_server', views.dnacServerViewSet)
|
||
|
|
||
|
urlpatterns = router.urls
|
||
|
print(urlpatterns)
|