view irc/urls.py @ 1190:ce5a5c9cd9d8

Tweaks to MP3 comp tool
author Brian Neal <bgneal@gmail.com>
date Sun, 13 Mar 2022 13:09:37 -0500
parents 5ba2508939f7
children
line wrap: on
line source
"""urls for the IRC application"""
from django.conf.urls import url

import irc.views


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