【发布时间】:2015-10-14 23:35:39
【问题描述】:
使用 compojure-api,如:
(defapi app
(swagger-ui)
(swagger-docs
{:info {:title "Sample api"}})
(GET* "/" []
:no-doc true
(ok "hello world"))
(context* "/api" []
:tags ["thingie"]
(GET* "/plus" []
:return Long
:query-params [x :- Long, {y :- Long 1}]
:summary "x+y with query-parameters. y defaults to 1."
(ok (+ x y)))))
如何访问响铃会话?
【问题讨论】:
-
我建议检查
defapi扩展的内容。尤其是restructure部分扩展为。
标签: clojure compojure-api