This is the first in a series of commits to create a Python API for the LMS program_enrollments app. We do some general refactoring, renaming, and clean-up in order to move toward the creation of that API. EDUCATOR-4321
16 lines
256 B
Python
16 lines
256 B
Python
"""
|
|
Program Enrollment API URLs.
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from django.conf.urls import include, url
|
|
|
|
from .v1 import urls as v1_urls
|
|
|
|
app_name = 'lms.djangoapps.program_enrollments'
|
|
|
|
urlpatterns = [
|
|
url(r'^v1/', include(v1_urls))
|
|
]
|