mirror of
https://github.com/foomo/posh.git
synced 2026-06-28 21:50:09 +00:00
9 lines
108 B
Go
9 lines
108 B
Go
package exec
|
|
|
|
import (
|
|
"context"
|
|
"os/exec"
|
|
)
|
|
|
|
type Handler func(ctx context.Context, cmd *exec.Cmd) error
|