gotty/webtty/errors.go

14 lines
273 B
Go
Raw Permalink Normal View History

2017-02-25 22:37:07 +00:00
package webtty
import (
"errors"
)
var (
2017-08-24 05:40:28 +00:00
// ErrSlaveClosed indicates the function has exited by the slave
ErrSlaveClosed = errors.New("slave closed")
// ErrSlaveClosed is returned when the slave connection is closed.
2017-02-25 22:37:07 +00:00
ErrMasterClosed = errors.New("master closed")
)