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