mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-01-24 10:33:50 +08:00
16 lines
338 B
TypeScript
16 lines
338 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();
|