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:
11
packages/cli/src/commands/secrets/secrets.ts
Normal file
11
packages/cli/src/commands/secrets/secrets.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Command } from 'commander';
|
||||
import { list } from './secrets.list.js';
|
||||
import { set } from './secrets.set.js';
|
||||
import { remove } from './secrets.remove.js';
|
||||
|
||||
const secrets = new Command('secrets');
|
||||
secrets.addCommand(list);
|
||||
secrets.addCommand(set);
|
||||
secrets.addCommand(remove);
|
||||
|
||||
export { secrets };
|
||||
Reference in New Issue
Block a user