mirror of
https://github.com/evennia/evennia.git
synced 2026-03-19 22:36:31 +01:00
14 lines
350 B
Python
Executable file
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')),
|
|
)
|