14 lines
266 B
Go
14 lines
266 B
Go
//go:build !linux && !darwin && !windows
|
|
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func termWidth() int { return 80 }
|
|
|
|
func isTerminal(fd int) bool { return false }
|
|
|
|
func makeRaw(fd int) (func(), error) {
|
|
return nil, fmt.Errorf("raw terminal not supported on this platform")
|
|
}
|