From 7ad99a74b4b2e25ff919b1aab9a87aec92c42c16 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sat, 18 Dec 2021 20:11:18 -0500 Subject: [PATCH] added files to project --- src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 450a7d3..5913350 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,6 +8,9 @@ mod config; mod issue; mod repo; mod request; +mod pr; +mod user; +mod util; use clap::ArgMatches; @@ -48,7 +51,7 @@ fn main() { // TODO: match expression should be here if issue_matches.is_present("create") { - issue.create_issue(&config, issue_matches); + issue.create_issue(&request); } } _ => println!("Huh?"),