gremmie@1: """urls for the IRC application"""
bgneal@1028: from django.conf.urls import url
gremmie@1: 
bgneal@1028: import irc.views
bgneal@1028: 
bgneal@1028: 
bgneal@1028: urlpatterns = [
bgneal@1028:    url(r'^$', irc.views.view, name='irc-main'),
bgneal@1028: ]