来自http://immutant.org/documentation/current/apidoc/guide-installation.html的不变文档:
依赖关系到位后,您只需从应用程序的主入口点调用 Immutant 服务,该入口点由
:main
.project.clj
Immutant 的 Web 服务可以像这样调用:
(ns my-app.handler
...
(:require [immutant.web :as web])
... )
(def app ... )
(defn -main [& args]
(web/run app))
相当于(web/run app)
什么immutant.messaging
?