mirror of
https://github.com/pinry/pinry.git
synced 2025-11-14 00:55:43 +01:00
8 lines
201 B
Python
8 lines
201 B
Python
|
|
from django.conf.urls import patterns, include, url
|
||
|
|
|
||
|
|
|
||
|
|
urlpatterns = patterns('pinry.pins.views',
|
||
|
|
url(r'^$', 'recent_pins', name='recent-pins'),
|
||
|
|
url(r'^new-pin/$', 'new_pin', name='new-pin'),
|
||
|
|
)
|