diff options
| -rw-r--r-- | src/config.rs | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/src/config.rs b/src/config.rs index 9b37eb1..7fe9695 100644 --- a/src/config.rs +++ b/src/config.rs @@ -29,6 +29,7 @@ pub struct Config {      pub github_token: String,      pub owner: String,      pub repo: String, +    pub suggestions: Vec<String>,  }  impl Config { @@ -51,6 +52,7 @@ impl Config {              github_token: Self::github_token(&opt_matches, &git_config)?,              owner: o_r.owner,              repo: o_r.repo, +            suggestions: opt_matches.free,          })      } | 
