summaryrefslogtreecommitdiff
path: root/fb
diff options
context:
space:
mode:
authorYuval Adam <yuv.adm@gmail.com>2011-03-19 20:55:24 +0200
committerYuval Adam <yuv.adm@gmail.com>2011-03-19 20:55:24 +0200
commitf41f244101bcda9414f8a7a1a8b400e4ace3a463 (patch)
tree22e46160898c56cbd5fae2e00059206f0ce21b3d /fb
parentc89a8cc0529a6125d8abd91f3702093d15ef893a (diff)
added base urls
Diffstat (limited to 'fb')
-rw-r--r--fb/urls.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/fb/urls.py b/fb/urls.py
new file mode 100644
index 0000000..6334fa1
--- /dev/null
+++ b/fb/urls.py
@@ -0,0 +1,6 @@
+from django.conf.urls.defaults import *
+from django.http import HttpResponse
+
+urlpatterns = patterns('',
+ (r'^$', lambda r: HttpResponse("django-fb base", mimetype="text/plain")),
+) \ No newline at end of file