Skip to main content

interstice_cli/benchmark/
mod.rs

1mod command;
2mod network;
3mod report;
4mod runner;
5mod template;
6mod types;
7mod util;
8
9use interstice_core::IntersticeError;
10
11pub async fn handle_benchmark_command(args: &[String]) -> Result<(), IntersticeError> {
12    command::handle_benchmark_command(args.get(2..).unwrap_or(&[]).to_vec()).await
13}