(fmtStr string, args ...interface{})
| 73 | } |
| 74 | |
| 75 | func WriteStdout(fmtStr string, args ...interface{}) { |
| 76 | WrappedStdout.Write([]byte(fmt.Sprintf(fmtStr, args...))) |
| 77 | } |
| 78 | |
| 79 | func OutputHelpMessage(cmd *cobra.Command) { |
| 80 | cmd.SetOutput(WrappedStderr) |
no test coverage detected