dex/cmd/dexctl/util.go
2015-08-18 11:26:57 -07:00

22 lines
371 B
Go

package main
import (
"fmt"
"os"
"strings"
)
func stderr(format string, args ...interface{}) {
if !strings.HasSuffix(format, "\n") {
format = format + "\n"
}
fmt.Fprintf(os.Stderr, format, args...)
}
func stdout(format string, args ...interface{}) {
if !strings.HasSuffix(format, "\n") {
format = format + "\n"
}
fmt.Fprintf(os.Stdout, format, args...)
}