mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-25 14:28:20 +01:00
7 lines
136 B
Go
7 lines
136 B
Go
package terminal
|
|
|
|
// IsTerminal returns true if the file descriptor is terminal
|
|
func IsTerminal(fd int) bool {
|
|
return isTerminal(fd)
|
|
}
|