mirror of
https://github.com/ae-utbm/sith.git
synced 2025-09-13 03:25:49 +00:00
6 lines
141 B
Python
6 lines
141 B
Python
from django.urls import path
|
|
|
|
from timetable.views import GeneratorView
|
|
|
|
urlpatterns = [path("", GeneratorView.as_view(), name="generator")]
|