From 71cc54810fdb51e428b83a37ff89d54a6cc3d8c8 Mon Sep 17 00:00:00 2001 From: axtloss Date: Sun, 4 Feb 2024 13:35:03 +0100 Subject: add minisign signature verification --- verifysetup/cmd/setup.go | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 verifysetup/cmd/setup.go (limited to 'verifysetup/cmd/setup.go') 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 +} -- cgit v1.2.3