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