Skip to content

Instantly share code, notes, and snippets.

@ryan2clw
Created August 20, 2019 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryan2clw/aff4470467930a39b450a05d33ce7c1a to your computer and use it in GitHub Desktop.
Save ryan2clw/aff4470467930a39b450a05d33ce7c1a to your computer and use it in GitHub Desktop.
Play bingo urls
""" urls for playing bingo """
from django.urls import path
from play.views import CardList, BallList, reset_balls
urlpatterns = [
path('cards/', CardList.as_view(), name='cards'),
path('balls/', BallList.as_view(), name='balls'),
path('reset_balls/', reset_balls, name='reset_balls')
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment