aboutsummaryrefslogtreecommitdiffstats
path: root/src/urls.py
diff options
context:
space:
mode:
authortom christie tom@tomchristie.com2011-01-23 23:08:44 +0000
committertom christie tom@tomchristie.com2011-01-23 23:08:44 +0000
commite95198a1c0b206bd3b565bb62d167ada71595099 (patch)
tree65dc7f469b28f09783b732862ab9822b8528f10d /src/urls.py
parent4100242fa2395bef8db0c5ffbab6f5d0cf95301d (diff)
downloaddjango-rest-framework-e95198a1c0b206bd3b565bb62d167ada71595099.tar.bz2
Sphinx docs, examples, lots of refactoring
Diffstat (limited to 'src/urls.py')
-rw-r--r--src/urls.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/urls.py b/src/urls.py
deleted file mode 100644
index 41a32efa..00000000
--- a/src/urls.py
+++ /dev/null
@@ -1,15 +0,0 @@
-from django.conf.urls.defaults import patterns, include
-from django.contrib import admin
-
-admin.autodiscover()
-
-urlpatterns = patterns('',
- # Example:
- (r'^', include('testapp.urls')),
-
- # Uncomment the admin/doc line below to enable admin documentation:
- (r'^admin/doc/', include('django.contrib.admindocs.urls')),
-
- # Uncomment the next line to enable the admin:
- (r'^admin/', include(admin.site.urls)),
-)