From the immutant documentation at http://immutant.org/documentation/current/apidoc/guide-installation.html:
With the dependencies in place, you simply invoke the Immutant services from your app’s main entry point, identified by the
:mainkey in yourproject.clj.
Immutant's web service can be invoked like:
(ns my-app.handler
  ...
  (:require [immutant.web :as web])
  ... )
(def app ... )
(defn -main [& args]
  (web/run app))
What's the equivalent of (web/run app) for immutant.messaging?