from django.conf.urls.defaults import *

urlpatterns = patterns('storycraft.views',
    (r'^$', 'index'),
    (r'^games/(?P<game_id>\d+)/$', 'game_index', dict(), 'game_index'),
)

# vi:tabstop=4:expandtab:autoindent