(cmd *cobra.Command)
| 57 | } |
| 58 | |
| 59 | func AddCommandsTo(cmd *cobra.Command) { |
| 60 | cmd.AddCommand(compare.CompareCmd) |
| 61 | cmd.AddCommand(fetch.FetchCmd) |
| 62 | cmd.AddCommand(initialize.InitCmd) |
| 63 | cmd.AddCommand(inspect.InspectCmd) |
| 64 | cmd.AddCommand(track.TrackCmd) |
| 65 | cmd.AddCommand(validate.ValidateCmd) |
| 66 | cmd.AddCommand(version.VersionCmd) |
| 67 | cmd.AddCommand(opa.OPACmd) |
| 68 | cmd.AddCommand(sigstore.SigstoreCmd) |
| 69 | if utils.Experimental() { |
| 70 | cmd.AddCommand(test.NewTestCommand(context.Background())) |
| 71 | } |
| 72 | } |
no test coverage detected