Files
Sith/timetable/urls.py
2025-09-09 12:44:56 +02:00

6 lines
151 B
Python

from django.urls import path
from timetable.views import GeneratorView
urlpatterns = [path("generator/", GeneratorView.as_view(), name="generator")]