feat: switched from worker API to fs based

This commit is contained in:
Morten Olsen
2024-01-12 14:14:40 +01:00
parent 6d8e5bf955
commit 59d6faaafc
38 changed files with 458 additions and 67 deletions

View File

@@ -1,6 +1,7 @@
import { Command } from 'commander';
import { createClient } from '../../client/client.js';
import { step } from '../../utils/step.js';
import { Context } from '../../context/context.js';
const remove = new Command('remove');
@@ -8,8 +9,9 @@ remove
.alias('rm')
.argument('<id>')
.action(async (id) => {
const context = new Context();
const client = await step('Connecting to server', async () => {
return createClient();
return createClient(context);
});
await step('Removing', async () => {
await client.secrets.remove.mutate({