diff options
author | Teddy Wing | 2018-04-13 18:15:41 +0200 |
---|---|---|
committer | Teddy Wing | 2018-04-13 18:15:41 +0200 |
commit | f3a1142975ba108f4e71c64e788e9f5fa4123bdc (patch) | |
tree | 47676af8a6b6366a0fc8df6ded2da8dc48ce8196 /src/lib.rs | |
parent | ce4031c7252f096da2eaafdca13619240a8cf088 (diff) | |
download | meetup-find-events-rss-f3a1142975ba108f4e71c64e788e9f5fa4123bdc.tar.bz2 |
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.
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
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; |