1
1
mirror of https://github.com/encode/django-rest-framework.git synced 2025-03-23 11:24:17 +03:00
django-rest-framework/tests/browsable_api/auth_urls.py
2015-06-25 16:55:51 -04:00

11 lines
247 B
Python

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