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