The entry point of the command-line tool.
(ns cljam.tools.main (:require [cljam.tools.cli :as cli]) (:gen-class))
The entry point of the command-line tool. This function calls shutdown-agents finally because some features use agents for concurrency.
shutdown-agents
(defn -main [& args] (cli/run args) (shutdown-agents))