mirror of https://github.com/jumpserver/jumpserver
11 lines
232 B
Python
11 lines
232 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
#
|
||
|
from rest_framework_nested.routers import NestedMixin
|
||
|
from rest_framework_bulk.routes import BulkRouter
|
||
|
|
||
|
__all__ = ['BulkNestDefaultRouter']
|
||
|
|
||
|
|
||
|
class BulkNestDefaultRouter(NestedMixin, BulkRouter):
|
||
|
pass
|