mirror of
https://gitea.com/gitea/act
synced 2026-05-06 01:37:48 +02:00
10 lines
125 B
Go
10 lines
125 B
Go
// +build !appengine,!js,!windows,aix
|
|
|
|
package logrus
|
|
|
|
import "io"
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return false
|
|
}
|