mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-13 13:16:55 +03:00
10 lines
175 B
Python
10 lines
175 B
Python
from __future__ import unicode_literals
|
|
from django.conf.urls import patterns
|
|
|
|
from .views import MockView
|
|
|
|
urlpatterns = patterns(
|
|
'',
|
|
(r'^$', MockView.as_view()),
|
|
)
|