mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
9 lines
200 B
Python
9 lines
200 B
Python
from rest_framework import routers
|
|
|
|
from . import views
|
|
|
|
|
|
router = routers.DefaultRouter()
|
|
router.register(r'tenant-groups', views.TenantGroupViewSet)
|
|
router.register(r'tenants', views.TenantViewSet)
|