evennia/urls.py
2007-04-26 02:19:49 +00:00

14 lines
350 B
Python
Executable file

#
# File that determines what each URL points to. This uses _Python_ regular
# expressions, not Perl's.
#
# See:
# http://diveintopython.org/regular_expressions/street_addresses.html#re.matching.2.3
#
from django.conf.urls.defaults import *
urlpatterns = patterns('',
# Admin interface
(r'^admin/', include('django.contrib.admin.urls')),
)