mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
10 lines
200 B
Python
10 lines
200 B
Python
"""
|
|
This structures the (simple) structure of the
|
|
webpage 'application'.
|
|
"""
|
|
|
|
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('game.web.website.views',
|
|
(r'^$', 'page_index'),
|
|
)
|