Sith/timetable/urls.py

6 lines
151 B
Python
Raw Permalink Normal View History

2025-03-03 15:24:22 +01:00
from django.urls import path
from timetable.views import GeneratorView
urlpatterns = [path("generator/", GeneratorView.as_view(), name="generator")]