mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-10 19:56:59 +03:00
11 lines
247 B
Python
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')),
|
|
]
|