blob: 8963163f853ab5da6b1285931e721934eed11e4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package term
import (
"io"
)
// File represents a file that has a file descriptor and can be read from,
// written to, and closed.
type File interface {
io.ReadWriteCloser
Fd() uintptr
}
|