mirror of
https://github.com/Threnklyn/jira.git
synced 2026-06-07 21:43:32 +02:00
10 lines
88 B
Go
10 lines
88 B
Go
package terminal
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
InterruptErr = errors.New("interrupt")
|
|
)
|