Advertisement
Guest User

Untitled

a guest
Apr 7th, 2020
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  inquirer.prompt(questions).then(answers => {
  2.        
  3.         axios.post("http://v-chain.vn/accountservice/login", answers)
  4.             .then(res => {
  5.                 var a = answers;???
  6.                 token = res.data.data.token;
  7.                 if (token === undefined) {
  8.                     console.log(res.data.data.message)
  9.                 } else {
  10.                     fs.writeFile("token", token, function (err) {
  11.                         if (err) return console.log(err);
  12.                     });
  13.  
  14.                 }
  15.             })
  16.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement