This repository has been archived on 2023-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon-bot/src/main/mastodon_bot/infra.cljs

9 lines
167 B
Text
Raw Normal View History

2020-05-12 16:17:37 +00:00
(ns mastodon-bot.infra)
(defn js->edn [data]
(js->clj data :keywordize-keys true))
(defn exit-with-error [error]
(js/console.error error)
(js/process.exit 1))