From a399f9a8ecd334f764c5276540f0f719b264c892 Mon Sep 17 00:00:00 2001 From: lpm0073 Date: Mon, 10 Apr 2023 12:04:29 -0600 Subject: [PATCH] scaffold urls.py --- cookiecutter_plugin/urls.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 cookiecutter_plugin/urls.py diff --git a/cookiecutter_plugin/urls.py b/cookiecutter_plugin/urls.py new file mode 100644 index 0000000..4050389 --- /dev/null +++ b/cookiecutter_plugin/urls.py @@ -0,0 +1,5 @@ +# coding=utf-8 +from django.conf.urls import url + +app_name = "openedx_plugin" +urlpatterns = []