You've already forked opc-backend
11 lines
270 B
Python
11 lines
270 B
Python
|
|
from django.urls import path, include
|
||
|
|
from rest_framework.routers import DefaultRouter
|
||
|
|
from .views import OpcCertificationViewSet
|
||
|
|
|
||
|
|
router = DefaultRouter()
|
||
|
|
router.register('certifications', OpcCertificationViewSet)
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path('', include(router.urls)),
|
||
|
|
]
|