AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
pty.go
根目录
/
internal
/
persistentshell
/
pty.go
1
package persistentshell
2
3
type ptyConn interface {
4
Read(p []byte) (int, error)
5
Write(p []byte) (int, error)
6
Close() error
7
}
8
8 lines
GO