mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 07:16:31 +01:00
5 lines
119 B
Python
5 lines
119 B
Python
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('webapps.website.views',
|
|
(r'^$', 'page_index'),
|
|
)
|