mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-14 18:24:14 +01:00
12 lines
111 B
Go
12 lines
111 B
Go
|
// +build appengine
|
||
|
|
||
|
package logrus
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
func checkIfTerminal(w io.Writer) bool {
|
||
|
return true
|
||
|
}
|