aboutsummaryrefslogtreecommitdiffstats
path: root/servo/urls/diagnostics.py
diff options
context:
space:
mode:
Diffstat (limited to 'servo/urls/diagnostics.py')
-rw-r--r--servo/urls/diagnostics.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/servo/urls/diagnostics.py b/servo/urls/diagnostics.py
new file mode 100644
index 0000000..50e6973
--- /dev/null
+++ b/servo/urls/diagnostics.py
@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+
+from django.conf.urls import patterns, url
+
+urlpatterns = patterns(
+ "servo.views.diagnostics",
+ url(r'^fetch_url/$', 'fetch_dc_url', name="diagnostics-fetch_url"),
+)