mirror of
https://gitea.com/gitea/runner.git
synced 2026-08-25 21:37:45 +00:00
320e9b6057
ci-via-github-actions
12 lines
105 B
Go
12 lines
105 B
Go
// +build js
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return false
|
|
}
|