bettercap/vendor/github.com/evilsocket/islazy/async/errors.go

10 lines
136 B
Go

package async
import (
"errors"
)
var (
// ErrTimeout happens when there's a timeout ... doh.
ErrTimeout = errors.New("timeout")
)