mirror of
https://github.com/pinry/pinry.git
synced 2025-11-13 08:35:41 +01:00
7 lines
176 B
Python
7 lines
176 B
Python
from django.conf.urls import patterns, include, url
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^pins/recent/(?P<page>\d*)/$', 'pinry.api.views.pins_recent', name='pins-recent'),
|
|
)
|