summaryrefslogtreecommitdiff
path: root/frontend/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/urls.py')
-rw-r--r--frontend/urls.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/frontend/urls.py b/frontend/urls.py
new file mode 100644
index 0000000..7a438c9
--- /dev/null
+++ b/frontend/urls.py
@@ -0,0 +1,7 @@
+from django.conf.urls import patterns, include, url
+
+
+urlpatterns = patterns('frontend.views',
+ # API
+ url(r'^backgrounds/$', 'backgrounds'),
+)