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

View File

@@ -0,0 +1,17 @@
import { Command } from 'commander';
import { createClient } from '../../client/client.js';
const set = new Command('set');
set
.argument('<id>')
.argument('[value]')
.action(async (id, value) => {
const client = await createClient();
await client.secrets.set.mutate({
id,
value,
});
});
export { set };