Move file to common

This commit is contained in:
Mubelotix
2025-08-26 11:09:03 +02:00
parent ab91ea8b47
commit a1424e1cb4
4 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,5 @@
mod dashboard;
mod env_info;
mod meili_process;
mod workload;
use crate::common::args::CommonArgs;

View File

@ -13,10 +13,10 @@ use uuid::Uuid;
use super::dashboard::DashboardClient;
use super::BenchDeriveArgs;
use crate::bench::meili_process;
use crate::common::assets::{self, Asset};
use crate::common::client::Client;
use crate::common::command::{run_commands, Command};
use crate::common::meili_process;
/// A bench workload.
/// Not to be confused with [a test workload](crate::test::workload::Workload).

View File

@ -3,4 +3,5 @@ pub mod assets;
pub mod client;
pub mod command;
pub mod logs;
pub mod meili_process;
pub mod workload;