コード例 #1
0
ファイル: xample_test.go プロジェクト: gamegos/jsend
func handler(w http.ResponseWriter, r *http.Request) {
	data := map[string]interface{}{
		"id":   1,
		"name": "foo",
	}

	jsend.Wrap(w).
		Data(data).
		Status(201).
		Send()
}
コード例 #2
0
ファイル: server.go プロジェクト: gamegos/scotty
func (h *mainHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
	jw := jsend.Wrap(w)
	h.f(jw, r, h.ctx)
	jw.Send()
}