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