cli/tx/errors.go

9 lines
136 B
Go
Raw Permalink Normal View History

2024-06-05 12:49:23 +03:00
package tx
import "errors"
var (
ErrNoInputProvided = errors.New("no input provided")
ErrNotTerminal = errors.New("not terminal")
)