mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
8 lines
225 B
Python
Executable File
8 lines
225 B
Python
Executable File
from django.conf.urls.defaults import patterns, url, handler404, handler500
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^$', 'djangotest.testing.views.home'),
|
|
)
|
|
|
|
def __exported_functionality__():
|
|
return [handler404, handler500] |