mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-05-06 22:12:23 +08:00
17 lines
219 B
Go
17 lines
219 B
Go
package pty
|
|
|
|
type MsgType int
|
|
|
|
const (
|
|
MsgTypeInit MsgType = iota
|
|
TypeData
|
|
TypeResize
|
|
TypePing
|
|
)
|
|
|
|
type Runner interface {
|
|
ReadPtyAndWriteWs(errorChan chan error)
|
|
ReadWsAndWritePty(errorChan chan error)
|
|
Close()
|
|
}
|