Files
dax-pay-ui/apps/test-server/controller/UserController.ts
2024-07-02 21:27:05 +08:00

16 lines
331 B
TypeScript

import UserService from '../service/UserService'
class UserController {
private service: UserService = new UserService()
login = async (ctx) => {
ctx.body = await this.service.login()
}
getUserInfoById = async (ctx) => {
ctx.body = await this.service.getUserInfoById()
}
}
export default new UserController()