mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-14 05:36:50 +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()),
|
|
)
|