django-rest-framework/tests/browsable_api/no_auth_urls.py

8 lines
121 B
Python
Raw Normal View History

from __future__ import unicode_literals
2014-09-02 17:29:21 +04:00
from .views import MockView
urlpatterns = [
(r'^$', MockView.as_view()),
]