func encodeErrorResponse()

in clips/clips.go [146:154]


func encodeErrorResponse(err string) string {
	rs := Response{
		Error: err,
	}

	resp, _ := json.Marshal(rs)
	return string(resp)

}