mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 15:24:25 +00:00
9 lines
132 B
Go
9 lines
132 B
Go
package webtty
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
// Master represents a PTY master, usually it's a websocket connection.
|
|
type Master io.ReadWriter
|