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:
19
packages/cli/src/commands/runs/runs.create.ts
Normal file
19
packages/cli/src/commands/runs/runs.create.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import { Command } from 'commander';
|
||||
import { createClient } from '../../client/client.js';
|
||||
import { step } from '../../utils/step.js';
|
||||
|
||||
const create = new Command('create');
|
||||
|
||||
create
|
||||
.description('Create a new run')
|
||||
.argument('load-id', 'Load ID')
|
||||
.action(async (loadId) => {
|
||||
const client = await step('Connecting to server', async () => {
|
||||
return createClient();
|
||||
});
|
||||
await step('Creating run', async () => {
|
||||
await client.runs.create.mutate({ loadId });
|
||||
});
|
||||
});
|
||||
|
||||
export { create };
|
||||
Reference in New Issue
Block a user