mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 15:24:25 +00:00
14 lines
273 B
Go
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")
|
|
)
|