aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorTeddy Wing2018-04-13 19:08:48 +0200
committerTeddy Wing2018-04-13 19:08:48 +0200
commit97dba8dedcf3fde65dfa9ae4aa57de0c446a66a1 (patch)
tree34ee4ad6156f5bd4626e4f747a1f2898a18cecd0 /src/lib.rs
parent9c52f6e0b4db6ce7c732e33feceb40743611d35c (diff)
downloadmeetup-find-events-rss-97dba8dedcf3fde65dfa9ae4aa57de0c446a66a1.tar.bz2
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.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
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;