()
| 38 | } |
| 39 | |
| 40 | func (p *SlackPayload) JSONPayload() ([]byte, error) { |
| 41 | data, err := jsoniter.MarshalIndent(p, "", " ") |
| 42 | if err != nil { |
| 43 | return []byte{}, err |
| 44 | } |
| 45 | return data, nil |
| 46 | } |
| 47 | |
| 48 | // see: https://api.slack.com/docs/formatting |
| 49 | func SlackTextFormatter(s string) string { |
no outgoing calls
no test coverage detected