vault/tools/pipeline/internal/cmd/go_diff.go
Vault Automation e53661ce92
license: update headers to IBM Corp. on main (#10333) (#10361)
Signed-off-by: Ryan Cragun <me@ryan.ec>
Co-authored-by: Ryan Cragun <me@ryan.ec>
2025-10-23 20:54:04 +00:00

20 lines
328 B
Go

// Copyright IBM Corp. 2016, 2025
// SPDX-License-Identifier: BUSL-1.1
package cmd
import (
"github.com/spf13/cobra"
)
func newGoDiffCmd() *cobra.Command {
goModCmd := &cobra.Command{
Use: "diff",
Short: "Go diff commands",
Long: "Go diff commands",
}
goModCmd.AddCommand(newGoDiffModCmd())
return goModCmd
}