diff --git a/src/commands/login.ts b/src/commands/login.ts index dd4d210b..25b6db33 100644 --- a/src/commands/login.ts +++ b/src/commands/login.ts @@ -10,12 +10,9 @@ export default class Login extends Command { help: flags.help({ char: "h" }), } - // static args = [{ name: 'file' }]; - async run() { require("dotenv").config() - // const {args, flags} = this.parse(Auth) const email = await cli.prompt("Email", { type: "normal" }) const password = await cli.prompt("Password", { type: "hide" }) @@ -26,8 +23,6 @@ export default class Login extends Command { password, }) - this.log("-------------- vvv Your access token vvv --------------") this.log(result.access_token) - this.log("-------------- ^^^ Your access token ^^^ --------------") } }