Files
Sith/timetable/urls.py
2025-09-13 00:18:25 +02:00

6 lines
141 B
Python

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