/***/
/**
 * CLI module for the Backstage CLI.
 *
 * @packageDocumentation
 */

import { createCliModule } from '@backstage/cli-node';
import packageJson from '../package.json';

export default createCliModule({
  packageJson,
  init: async reg => {
    reg.addCommand({
      path: ['example'],
      description: 'An example command',
      execute: { loader: () => import('./commands/example') },
    });
  },
});
