[agent-automation] Create main.go CLI entry point at cmd/testbed2/main.go

This commit is contained in:
Fordjent Agent 2026-05-21 15:00:20 +00:00
parent 452ef5f1fa
commit 37083dd4c1

15
cmd/testbed2/main.go Normal file
View file

@ -0,0 +1,15 @@
package main
import (
"fmt"
"os"
"github.com/marmaduke/testbed2/pkg/cli"
)
func main() {
if err := cli.Run(os.Args[1:]); err != nil {
fmt.Fprintf(os.Stderr, "error: %v\n", err)
os.Exit(1)
}
}