(body []byte, headers map[string]string)
| 23 | ) |
| 24 | |
| 25 | func newApiResp(body []byte, headers map[string]string) *larkcore.ApiResp { |
| 26 | return newApiRespWithStatus(200, body, headers) |
| 27 | } |
| 28 | |
| 29 | func newApiRespWithStatus(status int, body []byte, headers map[string]string) *larkcore.ApiResp { |
| 30 | h := http.Header{} |
no test coverage detected