mirror of
https://github.com/r4sas/py-i2phosts
synced 2025-01-10 06:47:58 +00:00
9 lines
163 B
Python
9 lines
163 B
Python
|
from django.conf.urls.defaults import *
|
||
|
|
||
|
urlpatterns = patterns('web.jump.views',
|
||
|
(r'^error/', 'error'),
|
||
|
(r'^unknown/', 'unknown'),
|
||
|
(r'^(.+)', 'jumper'),
|
||
|
|
||
|
)
|