mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 06:19:24 +08:00
7 lines
239 B
Python
7 lines
239 B
Python
from django.urls import path
|
|
from .views import StudentStatusAPIView, ActiveStudentStatusListAPIView
|
|
|
|
urlpatterns = [
|
|
path('self/', StudentStatusAPIView.as_view()),
|
|
path('active_list/', ActiveStudentStatusListAPIView.as_view()),
|
|
]
|