mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-14 02:57:52 +08:00
9 lines
132 B
Go
9 lines
132 B
Go
// package async provides utilities for asynchronous IO.
|
|
package async
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var Timeout = errors.New("timed out")
|