mirror of
https://github.com/morten-olsen/mini-loader.git
synced 2026-02-08 01:36:26 +01:00
9 lines
241 B
TypeScript
9 lines
241 B
TypeScript
import { Command } from 'commander';
|
|
import { create } from './runs.create.js';
|
|
import { list } from './runs.list.js';
|
|
|
|
const runs = new Command('runs');
|
|
runs.description('Manage runs').addCommand(create).addCommand(list);
|
|
|
|
export { runs };
|