UNPKG

@mvp-rockets/namma-generator

Version:

A generator to generate mvp-rockets projects

14 lines (11 loc) 345 B
const Models = require('models'); module.exports = class CreateUserQuery { constructor(details) { this.id= details.id; this.username = details.username; this.password = details.password; } get() { return Models.User.create({ id:this.id, username: this.username, password: this.password }); } };