evennia/src/web/website/urls.py

10 lines
199 B
Python

"""
This structures the (simple) structure of the
webpage 'application'.
"""
from django.conf.urls.defaults import *
urlpatterns = patterns('src.web.website.views',
(r'^$', 'page_index'),
)