view irc/urls.py @ 656:79e785f0bdad

For issue #38, change IRC bot to use Redis instead of MySQL. Also deleting the bot from this repo as it now has its own repo.
author Brian Neal <bgneal@gmail.com>
date Sat, 11 May 2013 15:22:45 -0500
parents ee87ea74d46b
children 5ba2508939f7
line wrap: on
line source
"""urls for the IRC application"""
from django.conf.urls import patterns, url

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