Files
edx-platform/common/djangoapps/entitlements/rest_api/urls.py
Albert (AJ) St. Aubin e91c837173 Added Python API and renamed rest_api folder
[MICROBA-281]
2020-06-04 12:44:06 -04:00

11 lines
192 B
Python

"""
URLs file for the Entitlements API.
"""
from django.conf.urls import include, url
app_name = 'entitlements'
urlpatterns = [
url(r'^v1/', include('entitlements.rest_api.v1.urls')),
]