aboutsummaryrefslogtreecommitdiff
path: root/verifysetup/cmd/setup.go
blob: 3897903973e7d2218d05735aa83f267585dd09c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cmd

import (
	"github.com/spf13/cobra"
)

func NewVerifyCommand() *cobra.Command {
	cmd := &cobra.Command{
		Use:          "setup",
		Short:        "Set up fsverify",
		RunE:         SetupCommand,
		SilenceUsage: true,
	}

	return cmd
}

func SetupCommand(_ *cobra.Command, args []string) error {
	return nil
}