mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-12-24 11:51:06 +08:00
10 lines
200 B
Go
10 lines
200 B
Go
package pty
|
|
|
|
type PTYInterface interface {
|
|
Write(p []byte) (n int, err error)
|
|
Read(p []byte) (n int, err error)
|
|
Getsize() (uint16, uint16, error)
|
|
Setsize(cols, rows uint32) error
|
|
Close() error
|
|
}
|