mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 14:29:25 +08:00
9 lines
263 B
Python
9 lines
263 B
Python
from django.urls import include, path
|
|
from .views import SubjectListView
|
|
from .views import SubjectByYearSemesterView
|
|
|
|
urlpatterns = [
|
|
path('', SubjectListView.as_view()),
|
|
path('subjects/<str:year_slug>/',
|
|
SubjectByYearSemesterView.as_view()),
|
|
]
|