nk-cli
Version:
Initialize a vite app fast by NK-CLI
16 lines (11 loc) • 338 B
text/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();