Files
edx-platform/lms/djangoapps/mfe_config_api/urls.py
Maria Fernanda Magallanes Zubillaga f6f66d0f39 refactor!: change the api naming and url
2022-07-08 00:05:10 -04:00

11 lines
237 B
Python

""" URLs configuration for the mfe api."""
from django.urls import path
from lms.djangoapps.mfe_config_api.views import MFEConfigView
app_name = 'mfe_config_api'
urlpatterns = [
path('', MFEConfigView.as_view(), name='config'),
]