From f3a1142975ba108f4e71c64e788e9f5fa4123bdc Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Fri, 13 Apr 2018 18:15:41 +0200 Subject: Add a function to build an RSS `Channel` object from a list of `Event`s This uses the RSS crate to build a new channel with items corresponding to the given `Event`s. It needs to be fleshed out a little, but this is the basic idea. --- src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/lib.rs (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..9f8b791 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,5 @@ +extern crate rss; + +extern crate meetup; + +mod meetup_rss; -- cgit v1.2.3