13 lines
444 B
Python
13 lines
444 B
Python
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
from apps.inm.views import (WarehouseVIewSet, MaterialBatchViewSet)
|
|
|
|
API_BASE_URL = 'api/inm/'
|
|
HTML_BASE_URL = 'inm/'
|
|
|
|
router = DefaultRouter()
|
|
router.register('warehouse', WarehouseVIewSet, basename='warehouse')
|
|
router.register('materialbatch', MaterialBatchViewSet, basename='materialbatch')
|
|
urlpatterns = [
|
|
path(API_BASE_URL, include(router.urls)),
|
|
] |