-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cbe2592
commit 3035d88
Showing
8 changed files
with
31 additions
and
6,146 deletions.
There are no files selected for viewing
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
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
2 changes: 1 addition & 1 deletion
2
workflow/composer-v2/echo-library/src/common/starlark_modules.rs
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 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,14 +1,14 @@ | ||
use crate::commands::Commands; | ||
use clap::StructOpt; | ||
|
||
/// CLI Arguments entry point - includes global parameters and subcommands | ||
/// Cli Arguments entry point - includes global parameters and subcommands | ||
#[derive(StructOpt, Debug)] | ||
#[structopt( | ||
name = "composer", | ||
author = "The HugoByte Team <[email protected]>", | ||
version = "0.0.1" | ||
)] | ||
pub struct CLI { | ||
pub struct Cli { | ||
#[structopt( | ||
short, | ||
global = true, | ||
|
@@ -23,7 +23,7 @@ pub struct CLI { | |
pub command: Commands, | ||
} | ||
|
||
impl CLI { | ||
impl Cli { | ||
pub fn quiet(&self) -> bool { | ||
self.quiet | ||
} | ||
|
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