2023-04-13 11:43:03 +02:00

19 lines
329 B
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)
var trust_keyCmd = &cobra.Command{
Use: "key",
Short: "Manage keys for signing Docker images",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(trust_keyCmd).Standalone()
trustCmd.AddCommand(trust_keyCmd)
}