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]
|
(defn parse-feed [payload]
|
||||||
(for [{:keys [title isoDate pubDate content link]} (:items payload)]
|
(for [{:keys [title isoDate pubDate content link]} (:items payload)]
|
||||||
(do
|
|
||||||
(println title)
|
|
||||||
{:created-at (js/Date. (or isoDate pubDate))
|
{:created-at (js/Date. (or isoDate pubDate))
|
||||||
:text (str title
|
:text (str title
|
||||||
"\n\n"
|
"\n\n"
|
||||||
link)})))
|
link)}))
|
||||||
|
|
||||||
(defn-spec get-feed map?
|
(defn-spec get-feed map?
|
||||||
[url string?
|
[url string?
|
||||||
|
|
Reference in a new issue