12 lines
162 B
Python
12 lines
162 B
Python
"""
|
|
CCX API URLs.
|
|
"""
|
|
|
|
|
|
from django.urls import include, path
|
|
|
|
app_name = 'ccx_api'
|
|
urlpatterns = [
|
|
path('v0/', include('lms.djangoapps.ccx.api.v0.urls')),
|
|
]
|