mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-10 19:56:59 +03:00
8 lines
121 B
Python
8 lines
121 B
Python
from __future__ import unicode_literals
|
|
|
|
from .views import MockView
|
|
|
|
urlpatterns = [
|
|
(r'^$', MockView.as_view()),
|
|
]
|