mirror of
https://github.com/evennia/evennia.git
synced 2026-03-22 15:56:30 +01:00
9 lines
235 B
Python
Executable file
9 lines
235 B
Python
Executable file
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('',
|
|
# Example:
|
|
# (r'^evennia/', include('evennia.apps.foo.urls.foo')),
|
|
|
|
# Uncomment this for admin:
|
|
(r'^admin/', include('django.contrib.admin.urls')),
|
|
)
|