"""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)), ]