Files
yudao-ui-admin-vben/tests/server/routes.ts
xingyuv 8cd7118457 init
2023-03-18 21:10:54 +08:00

24 lines
421 B
TypeScript

import UserController from './controller/UserController'
import FileController from './controller/FileController'
export default [
// user
{
path: '/login',
method: 'post',
action: UserController.login
},
{
path: '/getUserInfoById',
method: 'get',
action: UserController.getUserInfoById
},
// file
{
path: '/upload',
method: 'post',
action: FileController.upload
}
]