12 lines
118 B
Go
12 lines
118 B
Go
|
package ports
|
||
|
|
||
|
import "io"
|
||
|
|
||
|
type CWD string
|
||
|
|
||
|
func (c CWD) Value() string {
|
||
|
return string(c)
|
||
|
}
|
||
|
|
||
|
type STDOUT io.Writer
|