Volt CLI: source-available under AGPSL v5.0
Complete infrastructure platform CLI: - Container runtime (systemd-nspawn) - VoltVisor VMs (Neutron Stardust / QEMU) - Stellarium CAS (content-addressed storage) - ORAS Registry - GitOps integration - Landlock LSM security - Compose orchestration - Mesh networking Copyright (c) Armored Gates LLC. All rights reserved. Licensed under AGPSL v5.0
This commit is contained in:
15
pkg/ingress/cmd_helper.go
Normal file
15
pkg/ingress/cmd_helper.go
Normal file
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
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...)
|
||||
}
|
||||
Reference in New Issue
Block a user