gotty/server/slave.go
Iwasaki Yudai a6133f34b7 Refactor
2017-08-11 15:31:11 +09:00

18 lines
301 B
Go

package server
import (
"github.com/yudai/gotty/webtty"
)
// Slave is webtty.Slave with some additional methods.
type Slave interface {
webtty.Slave
GetTerminalSize() (width int, height int, err error)
}
type Factory interface {
Name() string
New(params map[string][]string) (Slave, error)
}