factory/apps/enm/urls.py

12 lines
327 B
Python

from django.urls import path, include
from rest_framework.routers import DefaultRouter
from apps.enm.views import MpointViewSet
API_BASE_URL = 'api/enm/'
HTML_BASE_URL = 'enm/'
router = DefaultRouter()
router.register('mpoint', MpointViewSet, basename='mpoint')
urlpatterns = [
path(API_BASE_URL, include(router.urls)),
]