mirror of
https://github.com/Hopiu/django.git
synced 2026-03-20 07:50:25 +00:00
8 lines
116 B
Python
8 lines
116 B
Python
|
|
from django.conf.urls.defaults import *
|
||
|
|
|
||
|
|
import views
|
||
|
|
|
||
|
|
urlpatterns = patterns('',
|
||
|
|
(r'^xview/$', views.xview),
|
||
|
|
)
|