9 lines
202 B
JavaScript
9 lines
202 B
JavaScript
|
module.exports.description = "Drop the keys we have instantiated"
|
||
|
|
||
|
module.exports.builder = (yargs) => {
|
||
|
|
||
|
}
|
||
|
|
||
|
module.exports.handler = (argv) => {
|
||
|
console.log("Drop the keys we have instantiated");
|
||
|
}
|