2024-08-04 11:06:58 +02:00

11 lines
155 B
Go

package terminal
import (
"errors"
)
var (
//lint:ignore ST1012 keeping old name for backwards compatibility
InterruptErr = errors.New("interrupt")
)