Welcome to mirror list, hosted at ThFree Co, Russian Federation.

terminal_check_no_terminal.go « logrus « sirupsen « github.com « vendor - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97af92c68ea2d7b305f501ae610aee16e8e205db (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build js nacl plan9

package logrus

import (
	"io"
)

func checkIfTerminal(w io.Writer) bool {
	return false
}