mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-11 12:17:24 +03:00
7 lines
217 B
Python
7 lines
217 B
Python
from django.conf.urls.defaults import patterns, url
|
|
from permissionsexample.views import ThrottlingExampleView
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^$', ThrottlingExampleView.as_view(), name='throttled-resource'),
|
|
)
|