This will remove imports from __future__ that are no longer needed. https://docs.python.org/3.5/library/2to3.html#2to3fixer-future
16 lines
218 B
Python
16 lines
218 B
Python
"""
|
|
Program Enrollment API URLs.
|
|
"""
|
|
|
|
|
|
|
|
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))
|
|
]
|