mirror of
https://github.com/Luzifer/ots.git
synced 2024-12-24 14:49:36 -05:00
38b1cd09f4
Signed-off-by: Knut Ahlers <knut@ahlers.me>
12 lines
105 B
Go
12 lines
105 B
Go
// +build js
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return false
|
|
}
|