-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1705 from matter-labs/il-refactor-prover-cli-stat…
…us-cmd
- Loading branch information
Showing
6 changed files
with
45 additions
and
47 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 |
---|---|---|
@@ -1,2 +1,10 @@ | ||
use clap::Subcommand; | ||
use status::jobs; | ||
|
||
pub(crate) mod get_file_info; | ||
pub(crate) mod jobs_status; | ||
pub(crate) mod status; | ||
|
||
#[derive(Subcommand)] | ||
pub(crate) enum StatusCommand { | ||
Jobs(jobs::Args), | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
use super::StatusCommand; | ||
|
||
pub(crate) mod jobs; | ||
|
||
pub(crate) async fn run(status_cmd: StatusCommand) -> anyhow::Result<()> { | ||
match status_cmd { | ||
StatusCommand::Jobs(args) => jobs::run(args).await, | ||
} | ||
} |
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