view gpp/irc/urls.py @ 328:3f9b9fd54b01

Some optimizations to reduce database query times.
author Brian Neal <bgneal@gmail.com>
date Tue, 22 Feb 2011 05:40:29 +0000
parents dbd703f7d63a
children ddd69a8e07c7
line wrap: on
line source
"""urls for the IRC application"""
from django.conf.urls.defaults import *

urlpatterns = patterns('irc.views',
   url(r'^$', 'view', name='irc-main'),
)