Files
bantam/term_windows.go
T
2026-08-08 23:10:10 +03:00

12 lines
239 B
Go

//go:build windows
package main
import "errors"
func termWidth() int { return 80 }
func isTerminal(fd int) bool { return false }
func makeRaw(fd int) (func(), error) { return nil, errors.New("raw terminal not supported on windows") }