gotty/webtty/errors.go

14 lines
273 B
Go
Raw Normal View History

2017-02-26 07:37:07 +09:00
package webtty
import (
"errors"
)
var (
2017-08-24 14:40:28 +09: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-26 07:37:07 +09:00
ErrMasterClosed = errors.New("master closed")
)