This commit is contained in:
Morten Olsen
2024-01-11 09:03:14 +01:00
commit 0ac0c918fa
81 changed files with 6979 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { Command } from 'commander';
import { list } from './logs.list.js';
const logs = new Command('logs');
logs.addCommand(list);
export { logs };