1
1
mirror of https://github.com/encode/django-rest-framework.git synced 2025-05-09 02:13:43 +03:00
django-rest-framework/tests/browsable_api/no_auth_urls.py
2015-06-25 16:55:51 -04:00

10 lines
158 B
Python

from __future__ import unicode_literals
from django.conf.urls import url
from .views import MockView
urlpatterns = [
url(r'^$', MockView.as_view()),
]