evennia/urls.py

15 lines
350 B
Python
Raw Normal View History

2007-04-26 02:19:49 +00:00
#
# 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
#
2006-11-20 18:54:10 +00:00
from django.conf.urls.defaults import *
urlpatterns = patterns('',
2007-04-26 02:19:49 +00:00
# Admin interface
(r'^admin/', include('django.contrib.admin.urls')),
2006-11-20 18:54:10 +00:00
)