1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-06 17:33:01 +00:00
2020-04-29 16:26:52 +02:00

10 lines
174 B
Python

from django.urls import path
from .views import TournamentListView
app_name = "tournament"
urlpatterns = [
path('list/', TournamentListView.as_view(), name="list"),
]