1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-11 17:41:20 +00:00

10 lines
174 B
Python
Raw Normal View History

2020-04-29 16:26:52 +02:00
from django.urls import path
from .views import TournamentListView
app_name = "tournament"
urlpatterns = [
path('list/', TournamentListView.as_view(), name="list"),
]