mirror of
https://github.com/vbatts/imgsrv.git
synced 2025-07-02 07:18:30 +00:00
11 lines
181 B
Go
11 lines
181 B
Go
// +build linux darwin
|
|
|
|
package sequences
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func EnableVirtualTerminalProcessing(stream uintptr, enable bool) error {
|
|
return fmt.Errorf("windows only package")
|
|
}
|