mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2026-05-17 00:26:36 +03:00
10 lines
291 B
Go
10 lines
291 B
Go
package apptest
|
|
|
|
import "io"
|
|
|
|
// StartVmctl starts an instance of vmctl cli with the given flags
|
|
func StartVmctl(instance string, flags []string, output io.Writer) error {
|
|
_, _, err := startApp(instance, "../../bin/vmctl-race", flags, &appOptions{wait: true, output: output})
|
|
return err
|
|
}
|