token-server/vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go
Vincent Batts 5699bdfa8f
adding vendored sources for local builds
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2025-02-05 14:59:50 -05:00

11 lines
116 B
Go

// +build js nacl plan9
package logrus
import (
"io"
)
func checkIfTerminal(w io.Writer) bool {
return false
}