mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 23:34:26 +00:00
18 lines
301 B
Go
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)
|
|
}
|