From 5a1795652cb751f661fc1c911356f536f03510af Mon Sep 17 00:00:00 2001 From: Benoit Alessandroni Date: Fri, 9 Aug 2019 18:51:42 +0200 Subject: [PATCH] Removing the now useless urls.py file from the example package --- djangoldp_example/urls.py | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 djangoldp_example/urls.py diff --git a/djangoldp_example/urls.py b/djangoldp_example/urls.py deleted file mode 100644 index 5a2b7e3..0000000 --- a/djangoldp_example/urls.py +++ /dev/null @@ -1,9 +0,0 @@ -"""djangoldp project URL Configuration""" -from django.conf.urls import url -from djangoldp.views import LDPViewSet - -from .models import ExampleModel - -urlpatterns = [ - url(r'^examples/', LDPViewSet.urls(model=ExampleModel)), -]