aboutsummaryrefslogtreecommitdiff
path: root/verifysetup/cmd/setup.go
diff options
context:
space:
mode:
Diffstat (limited to 'verifysetup/cmd/setup.go')
-rw-r--r--verifysetup/cmd/setup.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/verifysetup/cmd/setup.go b/verifysetup/cmd/setup.go
new file mode 100644
index 0000000..3897903
--- /dev/null
+++ b/verifysetup/cmd/setup.go
@@ -0,0 +1,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
+}