django-rest-framework/examples/pygments_api/urls.py
tom christie tom@tomchristie.com 6807cf014c Added pygments_api example
2011-01-26 08:58:09 +00:00

7 lines
173 B
Python

from django.conf.urls.defaults import patterns
urlpatterns = patterns('pygments_api.views',
(r'^$', 'PygmentsRoot'),
(r'^([a-zA-Z0-9]+)/$', 'PygmentsInstance'),
)