(format string, a ...interface{})
| 442 | } |
| 443 | |
| 444 | func PrintInfoMsg(format string, a ...interface{}) { |
| 445 | fmt.Printf(format+"\n", a...) |
| 446 | } |
| 447 | |
| 448 | func PrintJsonData(data []byte) { |
| 449 | var out bytes.Buffer |
no outgoing calls
no test coverage detected