@codedungeon/gunner
Version:
Node CLI Framework
11 lines (9 loc) • 505 B
JavaScript
/*-------------------------------------------------------------------------------------------
* Copyright (c) 2018-2021 Mike Erickson / Codedungeon. All rights reserved.
* Licensed under the MIT license. See LICENSE in the project root for license information.
* -----------------------------------------------------------------------------------------*/
module.exports = (cli) => {
cli.helloExtension = ({ toolbox } = cli) => {
return toolbox.print.info('Hello from Gunner Extension!')
}
}