mirror of
https://github.com/IBM/fp-go.git
synced 2025-06-23 00:27:49 +02:00
14 lines
281 B
Go
14 lines
281 B
Go
package exec
|
|
|
|
import (
|
|
"github.com/ibm/fp-go/exec"
|
|
F "github.com/ibm/fp-go/function"
|
|
IOE "github.com/ibm/fp-go/ioeither"
|
|
G "github.com/ibm/fp-go/ioeither/generic"
|
|
)
|
|
|
|
var (
|
|
// Command executes a command
|
|
Command = F.Curry3(G.Command[IOE.IOEither[error, exec.CommandOutput]])
|
|
)
|