12 lines
228 B
Python
12 lines
228 B
Python
"""
|
|
URLs file for the Entitlements API.
|
|
"""
|
|
|
|
from django.urls import include
|
|
from django.urls import path
|
|
|
|
app_name = 'entitlements'
|
|
urlpatterns = [
|
|
path('v1/', include('common.djangoapps.entitlements.rest_api.v1.urls')),
|
|
]
|