UNPKG

@stoar/cli

Version:

CLI tool for STOAR - decentralized file storage on Arweave

9 lines 356 B
import { Command } from 'commander'; import chalk from 'chalk'; export const s3Command = new Command('s3') .description('S3-compatible API for STOAR storage') .action(() => { console.log(chalk.yellow('S3 command coming soon!')); console.log('This will provide S3-compatible API access to STOAR storage.'); }); //# sourceMappingURL=s3.js.map