searcherside/core/ports/os.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