ningle
Webサーバの起動(Qlot)
$ qlot exec ./quicklisp/bin/clackup app.lisp
Content-Typeヘッダーにapplication/jsonを設定する
code:lisp
(setf (lack.response:response-headers ningle:*response*)
(append (lack.response:response-headers ningle:*response*)
'(:content-type "application/json")))
ningle:*response*でLackのResponseを参照できる。