mirror of
https://github.com/himool/HimoolERP.git
synced 2024-11-16 04:15:51 +08:00
9 lines
273 B
Python
9 lines
273 B
Python
from extensions.routers import *
|
|
from apps.goods.views import *
|
|
|
|
|
|
router = BaseRouter()
|
|
router.register('goods', GoodsViewSet, 'goods')
|
|
router.register('batchs', BatchViewSet, 'batch')
|
|
router.register('inventories', InventoryViewSet, 'inventory')
|
|
urlpatterns = router.urls
|