remove unused println
This commit is contained in:
parent
3097e6e00a
commit
21467128a6
1 changed files with 1 additions and 3 deletions
|
@ -17,12 +17,10 @@
|
|||
|
||||
(defn parse-feed [payload]
|
||||
(for [{:keys [title isoDate pubDate content link]} (:items payload)]
|
||||
(do
|
||||
(println title)
|
||||
{:created-at (js/Date. (or isoDate pubDate))
|
||||
:text (str title
|
||||
"\n\n"
|
||||
link)})))
|
||||
link)}))
|
||||
|
||||
(defn-spec get-feed map?
|
||||
[url string?
|
||||
|
|
Reference in a new issue