error.go 88 B

123456789
  1. package terminal
  2. import (
  3. "errors"
  4. )
  5. var (
  6. InterruptErr = errors.New("interrupt")
  7. )