mirror of
https://github.com/morten-olsen/mini-loader.git
synced 2026-02-08 01:36:26 +01:00
init
This commit is contained in:
8
packages/cli/src/commands/runs/runs.ts
Normal file
8
packages/cli/src/commands/runs/runs.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
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 };
|
||||
Reference in New Issue
Block a user