gotty/server/slave.go

18 lines
262 B
Go
Raw Permalink Normal View History

2017-02-26 07:37:07 +09:00
package server
import (
"github.com/yudai/gotty/webtty"
)
// Slave is webtty.Slave with some additional methods.
type Slave interface {
webtty.Slave
2017-08-24 14:40:28 +09:00
Close() error
2017-02-26 07:37:07 +09:00
}
type Factory interface {
Name() string
New(params map[string][]string) (Slave, error)
}