about summary refs log tree commit diff
path: root/pkgs/profpatsch/youtube2audiopodcast/Main.hs
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2019-12-27 22:03:00 +0100
committerProfpatsch <mail@profpatsch.de>2019-12-27 22:03:00 +0100
commit3c742087af0d79bc2b86965606be673201b16346 (patch)
tree98ec1cd57066cb916914d6535e1f65851dd973c9 /pkgs/profpatsch/youtube2audiopodcast/Main.hs
parenta3909720af30191715520414e89bafe947df12e4 (diff)
pkgs/profpatsch/youtube2audiopodcast: serve rss feed & audio files
Diffstat (limited to 'pkgs/profpatsch/youtube2audiopodcast/Main.hs')
-rwxr-xr-xpkgs/profpatsch/youtube2audiopodcast/Main.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/profpatsch/youtube2audiopodcast/Main.hs b/pkgs/profpatsch/youtube2audiopodcast/Main.hs
index 98be3867..4d0f9a93 100755
--- a/pkgs/profpatsch/youtube2audiopodcast/Main.hs
+++ b/pkgs/profpatsch/youtube2audiopodcast/Main.hs
@@ -5,6 +5,7 @@
 module Main where
 
 import Data.Text (Text)
+import Data.Text.Lazy.IO as TIO
 import Text.RSS.Syntax
 import Text.Feed.Types (Feed(RSSFeed))
 import Text.Feed.Export (textFeed)
@@ -68,7 +69,8 @@ main = do
         { channelName = "channel name"
         , channelURL = "channel url"
         })
-  print $ textFeed $ RSSFeed $ toRSS exConfig rss
+  let (Just feed) = textFeed $ RSSFeed $ toRSS exConfig rss
+  TIO.putStr feed
 
 toRSS :: Config -> Channel -> RSS
 toRSS Config{..} Channel{channelInfo, channelItems}  =