mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-04 10:57:50 +08:00
6992c0b693
Also make file:pipe output a struct map rather than a pseudomap.
11 lines
164 B
Go
11 lines
164 B
Go
package vals
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
// Pipe wraps a pair of [*os.File] that are the two ends of a pipe.
|
|
type Pipe struct{ R, W *os.File }
|
|
|
|
func (Pipe) IsStructMap() {}
|