8 lines
224 B
Python
8 lines
224 B
Python
from rest_framework.routers import DefaultRouter
|
|
|
|
from .views.course_runs import CourseRunViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'course_runs', CourseRunViewSet, base_name='course_run')
|
|
urlpatterns = router.urls
|