10 lines
88 B
Go
10 lines
88 B
Go
|
package terminal
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
InterruptErr = errors.New("interrupt")
|
||
|
)
|