mirror of
https://github.com/himool/HimoolERP.git
synced 2026-01-15 13:54:13 +08:00
9 lines
288 B
Python
9 lines
288 B
Python
from extensions.routers import *
|
|
from apps.manage.views import *
|
|
|
|
|
|
router = BaseRouter()
|
|
router.register('super_user', SuperUserActionViewSet, 'super_user_action')
|
|
router.register('teams', TeamViewSet, 'team')
|
|
router.register('devices', DeviceViewSet, 'device')
|
|
urlpatterns = router.urls
|