/* Volt Ingress — OS command helpers (avoid import cycle with cmd package). Copyright (c) Armored Gates LLC. All rights reserved. */ package ingress import ( "os/exec" ) // newCommand creates an exec.Cmd — thin wrapper to avoid import cycles. func newCommand(name string, args ...string) *exec.Cmd { return exec.Command(name, args...) }