(input []byte)
| 32 | } |
| 33 | |
| 34 | func base64Encoded(input []byte) string { |
| 35 | return base64.StdEncoding.EncodeToString(input) |
| 36 | } |
| 37 | |
| 38 | func toJSON(data interface{}) []byte { |
| 39 | encoded, err := json.Marshal(data) |
no outgoing calls
no test coverage detected