Files
mini-loader/packages/cli/src/commands/artifacts/artifacts.ts
2024-01-12 14:35:16 +01:00

12 lines
327 B
TypeScript

import { Command } from 'commander';
import { list } from './artifacts.list.js';
import { remove } from './artifacts.remove.js';
import { pull } from './artifacts.pull.js';
const artifacts = new Command('artifacts');
artifacts.addCommand(list);
artifacts.addCommand(remove);
artifacts.addCommand(pull);
export { artifacts };