restpi/pins/urls.py

8 wiersze
196 B
Python

2019-01-28 00:09:01 +00:00
from django.conf.urls import url, include
2019-01-28 21:58:55 +00:00
from pins.views import PinView, PinIndexView
2019-01-28 00:09:01 +00:00
urlpatterns = [
2019-01-28 21:58:55 +00:00
url(r'^$', PinIndexView.as_view()),
url(r'^api/(?P<pin>\d*)', PinView.as_view()),
2019-01-28 00:09:01 +00:00
]