mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-11 20:27:12 +03:00
7 lines
185 B
Python
7 lines
185 B
Python
|
from django.conf.urls.defaults import patterns
|
||
|
|
||
|
urlpatterns = patterns('objectstore.views',
|
||
|
(r'^$', 'ObjectStoreRoot'),
|
||
|
(r'^(?P<key>[A-Za-z0-9_-]{1,64})/$', 'StoredObject'),
|
||
|
)
|