mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
12 lines
255 B
Python
12 lines
255 B
Python
from netbox.api import OrderedDefaultRouter
|
|
from . import views
|
|
|
|
|
|
router = OrderedDefaultRouter()
|
|
router.APIRootView = views.WirelessRootView
|
|
|
|
router.register('wireless-lans', views.WirelessLANViewSet)
|
|
|
|
app_name = 'wireless-api'
|
|
urlpatterns = router.urls
|