mirror of
https://github.com/yudai/gotty.git
synced 2025-09-22 05:50:48 +02:00
13 lines
237 B
Go
13 lines
237 B
Go
package webtty
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
// Slave represents a PTY slave, typically it's a local command.
|
|
type Slave interface {
|
|
io.ReadWriteCloser
|
|
|
|
WindowTitleVariables() map[string]interface{}
|
|
ResizeTerminal(columns int, rows int) error
|
|
}
|