diff options
| author | tom christie tom@tomchristie.com | 2010-12-29 19:37:57 +0000 |
|---|---|---|
| committer | tom christie tom@tomchristie.com | 2010-12-29 19:37:57 +0000 |
| commit | 650111dc8c0800e5b7d4c878c1d454657b68efca (patch) | |
| tree | b2cb8a07eb60abe20012b352d856bb1dcb13f440 /src/testarchive/urls.py | |
| download | django-rest-framework-650111dc8c0800e5b7d4c878c1d454657b68efca.tar.bz2 | |
Initial commit of all files to the repository.
Diffstat (limited to 'src/testarchive/urls.py')
| -rw-r--r-- | src/testarchive/urls.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/testarchive/urls.py b/src/testarchive/urls.py new file mode 100644 index 00000000..81aa0fa8 --- /dev/null +++ b/src/testarchive/urls.py @@ -0,0 +1,7 @@ +from django.conf.urls.defaults import patterns +from testarchive.views import RootResource + + +urlpatterns = patterns('', + (r'^$', RootResource), +) |
