Add initial Action (#40)

* Add initial Github action.
This commit is contained in:
Dave Gallant
2020-10-26 00:35:19 -04:00
committed by GitHub
parent 2c9f0df088
commit 7b59bf8163
12 changed files with 373 additions and 422 deletions

View File

@@ -39,7 +39,7 @@ fn main() {
let matches = app.get_matches();
let config = matches.value_of("config").unwrap();
let parsed_config = config::parse(config);
let parsed_config = config::load(config);
info!("{:?}\n", parsed_config);
let hot_deals = rfd::get_hot_deals().map_err(|err| error!("{:?}", err)).ok();