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