inventory-app/pkg/utils/ipmitool.go

21 lines
262 B
Go
Raw Permalink Normal View History

2023-01-25 14:25:58 +03:00
// Copyright 2022 Listware
package utils
import (
"io"
"os/exec"
)
type ipmitool struct {
cmd *exec.Cmd
stdin io.Reader
stdout io.Writer
}
func newIpmiTool() (it *ipmitool, err error) {
it = &ipmitool{}
// it.cmd, err = exec.Command("")
return
}