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