summaryrefslogtreecommitdiff
path: root/cmd/podman/trust.go
blob: 6304586c3b80725227aef1c215fc04cf1b46dcbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package main

import (
	"github.com/containers/libpod/cmd/podman/cliconfig"
	"github.com/spf13/cobra"
)

var (
	trustCommand = cliconfig.PodmanCommand{
		Command: &cobra.Command{
			Use:   "trust",
			Short: "Manage container image trust policy",
			Long:  "podman image trust command",
		},
	}
)

func init() {
	trustCommand.AddCommand(getTrustSubCommands()...)
	imageCommand.AddCommand(trustCommand.Command)
}