// Object Storage Bucket Listimport { Command } from'commander';
import buckets from'../buckets.js';
const program = newCommand('bucket-list');
program
.description('Returns a list of all Buckets that you own.')
.action(buckets.getAll);
exportdefault program;