VictoriaMetrics/app/vmctl/terminal/terminal.go
2023-03-21 15:53:53 +01:00

6 lines
136 B
Go

package terminal
// IsTerminal returns true if the file descriptor is terminal
func IsTerminal(fd int) bool {
return isTerminal(fd)
}