mirror of
https://github.com/kennethreitz-archive/django-piston-xauth.git
synced 2026-06-20 07:20:59 +00:00
7 lines
131 B
Python
7 lines
131 B
Python
from django.conf.urls.defaults import *
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'api/', include('test_project.apps.testapp.urls'))
|
|
)
|