-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "tooling to compare schedules and run midpoints on CLI" (#12)
This reverts commit 56f1390.
- Loading branch information
Showing
5 changed files
with
0 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,6 @@ use clap::Subcommand; | |
|
||
mod cli_wrapper; | ||
mod common; | ||
mod internal; | ||
mod run; | ||
mod trace_replay; | ||
mod use_case; | ||
|
@@ -21,8 +20,6 @@ use colored::*; | |
pub use common::CommonOpts; | ||
use use_case::run_use_case; | ||
|
||
use self::internal::InternalOpts; | ||
|
||
#[derive(Parser, Debug)] | ||
#[clap(author = "[email protected]")] | ||
struct Args { | ||
|
@@ -37,8 +34,6 @@ struct Args { | |
pub enum Commands { | ||
Run(run::RunOpts), | ||
TraceReplay(trace_replay::TraceReplayOpts), | ||
/// Internal features | ||
Internal(InternalOpts), | ||
} | ||
|
||
#[fbinit::main] | ||
|
@@ -51,7 +46,6 @@ fn main() -> Result<()> { | |
let result = match command { | ||
Commands::Run(cmd) => run_use_case(cmd, &common_opts)?, | ||
Commands::TraceReplay(cmd) => run_use_case(cmd, &common_opts)?, | ||
Commands::Internal(cmd) => cmd.internal_command.main(&common_opts)?, | ||
}; | ||
|
||
if !result { | ||
|