balena-cli
Version:
The official balena Command Line Interface
18 lines (17 loc) • 535 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const core_1 = require("@oclif/core");
const lazy_1 = require("../../utils/lazy");
class LogoutCmd extends core_1.Command {
async run() {
await this.parse(LogoutCmd);
await (0, lazy_1.getBalenaSdk)().auth.logout();
}
}
LogoutCmd.description = (0, lazy_1.stripIndent) `
Logout from balena.
Logout from your balena account.
`;
LogoutCmd.examples = ['$ balena logout'];
exports.default = LogoutCmd;
//# sourceMappingURL=index.js.map
;