mirror of https://github.com/msgbyte/tailchat
refactor(cli): move the benchmarkd command to folder
parent
3f6c3b08d8
commit
48145a01ee
@ -0,0 +1,11 @@
|
|||||||
|
import { CommandModule } from 'yargs';
|
||||||
|
import { benchMessageCommand } from './message';
|
||||||
|
|
||||||
|
// https://docs.docker.com/engine/api/v1.41/
|
||||||
|
|
||||||
|
export const benchmarkCommand: CommandModule = {
|
||||||
|
command: 'benchmark',
|
||||||
|
describe: 'Tailchat Benchmark Test',
|
||||||
|
builder: (yargs) => yargs.command(benchMessageCommand).demandCommand(),
|
||||||
|
handler(args) {},
|
||||||
|
};
|
Loading…
Reference in New Issue