diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2011-03-19 20:55:24 +0200 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2011-03-19 20:55:24 +0200 |
| commit | f41f244101bcda9414f8a7a1a8b400e4ace3a463 (patch) | |
| tree | 22e46160898c56cbd5fae2e00059206f0ce21b3d /fb | |
| parent | c89a8cc0529a6125d8abd91f3702093d15ef893a (diff) | |
added base urls
Diffstat (limited to 'fb')
| -rw-r--r-- | fb/urls.py | 6 |
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 |
