openbackloggery/collection/games/urls.py

7 lines
113 B
Python

from django.conf.urls import url
from . import views
urlpatterns = [
url(r'$', views.GameList.as_view()),
]