You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/apps/cli/src/commands/benchmark/index.ts

19 lines
571 B
TypeScript

import { CommandModule } from 'yargs';
import { benchmarkConnectionsCommand } from './connections';
import { benchmarkMessageCommand } from './message';
import { benchmarkRegisterCommand } from './register';
// https://docs.docker.com/engine/api/v1.41/
export const benchmarkCommand: CommandModule = {
command: 'benchmark',
describe: 'Tailchat Benchmark Test',
builder: (yargs) =>
yargs
.command(benchmarkMessageCommand)
.command(benchmarkConnectionsCommand)
.command(benchmarkRegisterCommand)
.demandCommand(),
handler(args) {},
};