w
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

urls.py
text/x-python

Download raw (143 bytes)

from django.conf.urls import url

from playground.views import ScoreView


urlpatterns = [
    url(r'^', ScoreView.as_view(), name='score'),
]