mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-13 13:16:55 +03:00
7 lines
173 B
Python
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'),
|
||
|
)
|