pki/vendor/github.com/labstack/gommon/log/color.go

14 lines
154 B
Go
Raw Normal View History

2020-11-25 20:36:07 +01:00
// +build !appengine
package log
import (
"io"
"github.com/mattn/go-colorable"
)
func output() io.Writer {
return colorable.NewColorableStdout()
}