13 lines
325 B
Python
13 lines
325 B
Python
from .views import WorkViewSet
|
|
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
API_BASE_URL = 'api/carbon/'
|
|
HTML_BASE_URL = 'carbon/'
|
|
|
|
router = DefaultRouter()
|
|
router.register('work', WorkViewSet, basename='carbon_work')
|
|
urlpatterns = [
|
|
path(API_BASE_URL, include(router.urls)),
|
|
]
|