mirror of https://github.com/sirupsen/logrus.git
9 lines
95 B
Go
9 lines
95 B
Go
|
//go:build wasi
|
||
|
// +build wasi
|
||
|
|
||
|
package logrus
|
||
|
|
||
|
func isTerminal(fd int) bool {
|
||
|
return false
|
||
|
}
|