gotty/server/slave.go

18 lines
298 B
Go
Raw Permalink Normal View History

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