Move to src dir.
[edumed.git] / comment / urls.py
diff --git a/comment/urls.py b/comment/urls.py
deleted file mode 100644 (file)
index ef48089..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-# -*- coding: utf-8 -*-
-from django.conf.urls import patterns, url
-
-from .views import CommentDocumentList, CommentDocument
-
-
-urlpatterns = patterns(
-    '',
-    url('^$', CommentDocumentList.as_view(), name='comment_document_index'),
-    url('^(?P<slug>[^/]+)/$', CommentDocument.as_view(), name='comment_document')
-)