mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
9 lines
102 B
Go
9 lines
102 B
Go
|
//go:build windows
|
||
|
// +build windows
|
||
|
|
||
|
package terminal
|
||
|
|
||
|
func isTerminal(fd int) bool {
|
||
|
return true
|
||
|
}
|