mirror of
https://github.com/yudai/gotty.git
synced 2025-09-21 21:40:49 +02:00
8 lines
132 B
Go
8 lines
132 B
Go
package webtty
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
// Master represents a PTY master, usually it's a websocket connection.
|
|
type Master io.ReadWriter
|