view irc/urls.py @ 820:9a0df7bd2409

Bandmap application work in progress. Model defined. Map is displaying. Initial display of add form.
author Brian Neal <bgneal@gmail.com>
date Sun, 21 Sep 2014 18:20:29 -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'),
)