mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-27 03:54:01 +03:00
9 lines
157 B
Python
9 lines
157 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.conf.urls import url
|
|
from .views import MockView
|
|
|
|
urlpatterns = [
|
|
url(r'^$', MockView.as_view()),
|
|
]
|