diff options
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 |
