site-musique/timeline/urls.py
2019-09-01 16:02:36 +02:00

8 lines
115 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='evenements'),
]