15 lines
335 B
Python
15 lines
335 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
#路由文件
|
|
|
|
from django.urls import path, re_path
|
|
from rest_framework import routers
|
|
|
|
from apps.lyautocode.views.views_StudentManage import StudentManageViewSet
|
|
|
|
system_url = routers.SimpleRouter()
|
|
system_url.register(r'StudentManage', StudentManageViewSet)
|
|
|
|
urlpatterns = []
|
|
urlpatterns += system_url.urls
|