1
0
mirror of https://github.com/sorenisanerd/gotty.git synced 2025-04-13 05:30:28 +00:00
2017-08-24 14:40:28 +09:00

14 lines
273 B
Go

package webtty
import (
"errors"
)
var (
// ErrSlaveClosed indicates the function has exited by the slave
ErrSlaveClosed = errors.New("slave closed")
// ErrSlaveClosed is returned when the slave connection is closed.
ErrMasterClosed = errors.New("master closed")
)