@stoar/cli
Version:
CLI tool for STOAR - decentralized file storage on Arweave
11 lines • 487 B
JavaScript
import { Command } from 'commander';
import chalk from 'chalk';
export const interactiveCommand = new Command('interactive')
.alias('i')
.description('Launch interactive mode for STOAR CLI')
.action(() => {
console.log(chalk.yellow('Interactive mode coming soon!'));
console.log('This will launch an interactive REPL for STOAR commands.');
console.log('You will be able to run commands without typing "stoar" prefix.');
});
//# sourceMappingURL=interactive.js.map