mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2025-01-19 07:03:01 +08:00
6 lines
135 B
Python
6 lines
135 B
Python
from django.urls import include, path
|
|
from .views import SemesterListView
|
|
|
|
urlpatterns = [
|
|
path('', SemesterListView.as_view()),
|
|
]
|