import { run } from '../src/index.js'; export default run(app => app.program .name('remote') .description('Manage remoes') .addSubCommand('add', 'Add a remote') .addSubCommand('rm', 'Remove a remote') .addSubCommand('rename', 'Rename a remote') );