dr.botzo/ircbot/old-web/karma/urls.py
Brian S. Stephan e7b132348f actually i need to call this ircbot
so i don't collide with the django dr_botzo
2014-03-16 09:18:17 -05:00

9 lines
228 B
Python
Executable File

from django.conf.urls.defaults import *
urlpatterns = patterns('karma.views',
(r'^$', 'index'),
(r'^givers/$', 'givers'),
(r'^stats/$', 'stats'),
(r'^stats/(?P<key>.*)/$', 'key_detail', dict(), 'key_detail'),
)