decentral1se 8a19536ace
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
wip: fix: deploy status
#478
2025-02-11 11:03:02 +01:00

13 lines
192 B
Go

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
}