StudE-Backend/stude/semesters/urls.py

7 lines
135 B
Python
Raw Permalink Normal View History

2023-06-27 15:48:43 +08:00
from django.urls import include, path
from .views import SemesterListView
urlpatterns = [
path('', SemesterListView.as_view()),
]