From 3614cf054a636640ddc9c09c2db81b953bda7a05 Mon Sep 17 00:00:00 2001 From: siddharth ravikumar Date: Fri, 25 Nov 2022 18:46:10 -0500 Subject: fern.go: go fmt --- fern.go | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/fern.go b/fern.go index 736a8e6..b29f01f 100644 --- a/fern.go +++ b/fern.go @@ -15,32 +15,32 @@ // // fern's config file contains three fields: // -// { -// "ydl-path": "/usr/local/bin/yt-dlp", -// "dump-dir": "~/media/feeds", // media feed download directory -// "feeds": [...] // list of media feeds. -// } +// { +// "ydl-path": "/usr/local/bin/yt-dlp", +// "dump-dir": "~/media/feeds", // media feed download directory +// "feeds": [...] // list of media feeds. +// } // // Each item in the media "feeds" must be: // -// { -// "id": "media-feed-id", // unique identifier for the media feed -// "source": "https://feeds.npr.org/XXXX/rss.xml", // media feed url -// "schema": "npr", // must be "youtube" or "npr" -// "last": 5 // the last N items that should be downloaded -// "title-contains": "tiny desk" // optional. if specified, downloads entries with title matching the value of this field -// } +// { +// "id": "media-feed-id", // unique identifier for the media feed +// "source": "https://feeds.npr.org/XXXX/rss.xml", // media feed url +// "schema": "npr", // must be "youtube" or "npr" +// "last": 5 // the last N items that should be downloaded +// "title-contains": "tiny desk" // optional. if specified, downloads entries with title matching the value of this field +// } // // You may download an example config file for fern from // https://ricketyspace.net/fern/fern.json // // Run fern with: // -// $ fern -run +// $ fern -run // // To print fern's version, do: // -// $ fern -version +// $ fern -version package main import ( -- cgit v1.2.3