mirror of
https://github.com/evennia/evennia.git
synced 2026-04-08 09:24:37 +02:00
6 lines
191 B
Python
Executable file
6 lines
191 B
Python
Executable file
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('apps.news.views',
|
|
# (r'^news/show/(?P<entry_id>\d+)/$', 'show_news'),
|
|
# (r'^news/categories/list/$', 'recent_kills'),
|
|
)
|