diff options
author | Teddy Wing | 2018-04-14 17:14:48 +0200 |
---|---|---|
committer | Teddy Wing | 2018-04-14 17:14:48 +0200 |
commit | d960c2d1b778e2f01ee174ce31474084397d4cc3 (patch) | |
tree | b05213aeb95c72db81c2948b587db0d7a7c4dcc8 /src/main.rs | |
parent | a478b5cdf974bddfcb04897a25d5894783dd7812 (diff) | |
download | meetup-find-events-rss-d960c2d1b778e2f01ee174ce31474084397d4cc3.tar.bz2 |
Pass `find_upcoming_events` parameters along through the program
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 81097ae..5e10b64 100644 --- a/src/main.rs +++ b/src/main.rs @@ -41,5 +41,12 @@ fn main() { let meetup_token = opt_matches.opt_str("meetup-api-token").unwrap(); - build_rss::write_feed().unwrap(); + build_rss::write_feed( + meetup_token, + "48".to_owned(), + "2".to_owned(), + "2018-04-14".to_owned(), + None, + None, + ).unwrap(); } |