From 97dba8dedcf3fde65dfa9ae4aa57de0c446a66a1 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Fri, 13 Apr 2018 19:08:48 +0200 Subject: Output a feed to STDOUT when running the executable * Add a new module that contains a "main" library function that does the integration for generating the feed and outputting it to STDOUT. * Call this function from `main()` and have it output a real feed. --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 9f8b791..cc20fe5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,4 +2,6 @@ extern crate rss; extern crate meetup; +pub mod build_rss; + mod meetup_rss; -- cgit v1.2.3