Skip to content

Commit 6ef9fb3

Browse files
committed
pull_out_run
1 parent ec2dcf4 commit 6ef9fb3

File tree

26 files changed

+13
-14
lines changed

26 files changed

+13
-14
lines changed

β€Žservices/cli/src/bencher/sub/mod.rsβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ mod docker;
44
mod mock;
55
mod organization;
66
mod project;
7+
mod run;
78
mod sub_cmd;
89
mod system;
910
mod user;
@@ -24,15 +25,14 @@ use project::{
2425
plot::Plot,
2526
project::Project,
2627
report::Report,
27-
run::Run,
2828
testbed::Testbed,
2929
threshold::Threshold,
3030
};
3131
pub use project::{
32-
archive::ArchiveError,
33-
run::{runner::output::Output, thresholds::ThresholdsError, RunError},
34-
threshold::ThresholdError,
32+
archive::ArchiveError, report::thresholds::ThresholdsError, threshold::ThresholdError,
3533
};
34+
pub use run::RunError;
35+
use run::{runner::output::Output, Run};
3636
pub use sub_cmd::SubCmd;
3737
use system::{auth::Auth, server::Server};
3838
use user::{token::Token, user::User};

β€Žservices/cli/src/bencher/sub/project/mod.rsβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@ pub mod plot;
99
#[allow(clippy::module_inception)]
1010
pub mod project;
1111
pub mod report;
12-
pub mod run;
1312
pub mod testbed;
1413
pub mod threshold;

β€Žservices/cli/src/bencher/sub/project/report/create.rsβ€Ž

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@ use bencher_json::ResourceId;
77
use crate::{
88
bencher::{
99
backend::AuthBackend,
10-
sub::{
11-
project::{branch::start_point::StartPoint, run::thresholds::Thresholds},
12-
SubCmd,
13-
},
10+
sub::{project::branch::start_point::StartPoint, SubCmd},
1411
},
1512
parser::project::report::CliReportCreate,
1613
CliError,
1714
};
1815

16+
use super::thresholds::Thresholds;
17+
1918
#[derive(Debug, Clone)]
2019
pub struct Create {
2120
pub project: ResourceId,

β€Žservices/cli/src/bencher/sub/project/report/mod.rsβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ use crate::{bencher::sub::SubCmd, parser::project::report::CliReport, CliError};
33
mod create;
44
mod delete;
55
mod list;
6+
pub mod thresholds;
67
mod view;
78

89
#[derive(Debug)]

0 commit comments

Comments
Β (0)