Files
Sith/timetable/urls.py
2025-09-26 22:32:35 +02:00

6 lines
141 B
Python

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