UNPKG

gun-flint

Version:

Micro-framework for building Gun adapters

23 lines (17 loc) 351 B
module.exports = class Command { constructor (args) { this.args = args; } static describe() { } static help() { } flintPath() { return __filename.replace(/gun\-flint\/.*$/, 'gun-flint'); } run(args) { return new Promise((resolve, reject) => { resolve(); }); } }