searcherside/core/ports/os.go

12 lines
118 B
Go
Raw Normal View History

2024-06-06 20:08:51 +00:00
package ports
import "io"
type CWD string
func (c CWD) Value() string {
return string(c)
}
type STDOUT io.Writer