1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-21 21:47:32 +02:00
lazygit/vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go

12 lines
116 B
Go
Raw Normal View History

// +build js nacl plan9
2019-08-26 16:53:38 +02:00
package logrus
import (
"io"
)
func checkIfTerminal(w io.Writer) bool {
return false
}