view irc/urls.py @ 681:53a56d19568c

For Django 1.5.2; cleanup command is now called clearsessions.
author Brian Neal <bgneal@gmail.com>
date Fri, 16 Aug 2013 20:43:39 -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'),
)