UNPKG

226 BJavaScriptView Raw
1var log = require('../lib/log');
2
3require("simple-errors");
4
5module.exports = function(program, done) {
6 // There's actually nothing to do here as it all was handled in cli-init
7 log.success("Login succeeded");
8 done();
9};