mirror of
https://github.com/bettercap/bettercap
synced 2025-07-14 00:53:46 -07:00
10 lines
136 B
Go
10 lines
136 B
Go
package async
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
// ErrTimeout happens when there's a timeout ... doh.
|
|
ErrTimeout = errors.New("timeout")
|
|
)
|