mirror of
https://github.com/rsteube/carapace-bin.git
synced 2025-05-22 23:51:16 +00:00
19 lines
329 B
Go
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)
|
|
}
|