DEBSOURCES
Skip Quicknav
sources / golang-github-evilsocket-islazy / 1.11.0-1 / async / errors.go
12345678910
package async import ( "errors" ) var ( // ErrTimeout happens when there's a timeout ... doh. ErrTimeout = errors.New("timeout") )