view irc/urls.py @ 770:317015e5a372

Remove RFB side block. Add RFB logo to footer.
author Brian Neal <bgneal@gmail.com>
date Sat, 25 Jan 2014 11:28:24 -0600
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'),
)