mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
8 lines
167 B
Python
8 lines
167 B
Python
from django.conf.urls.defaults import patterns, url
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^acsv$', 'testing.views.acsv'),
|
|
url(r'^$', 'testing.views.home'),
|
|
|
|
)
|