mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-02-26 00:10:44 +03:00
7 lines
233 B
Python
7 lines
233 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'),
|
||
|
)
|