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.

(defn -main
  [& args]
  (cli/run args)
  (shutdown-agents))