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