aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2022-02-20 21:46:38 -0500
committerPaul Duncan <pabs@pablotron.org>2022-02-20 21:46:38 -0500
commit9eb5a5a160099547c40b654fc3d38590c5d67171 (patch)
tree5465ac46b88b57237e934b5f272b79a9fe08d523
parent87c0c8d7ed4eb334dbd084d0ab0040589071b111 (diff)
downloadcvez-9eb5a5a160099547c40b654fc3d38590c5d67171.tar.bz2
cvez-9eb5a5a160099547c40b654fc3d38590c5d67171.zip
add cobra dep, add cmd/
-rw-r--r--cmd/cmd.go2
-rw-r--r--cmd/root.go29
2 files changed, 31 insertions, 0 deletions
diff --git a/cmd/cmd.go b/cmd/cmd.go
new file mode 100644
index 0000000..faf2b75
--- /dev/null
+++ b/cmd/cmd.go
@@ -0,0 +1,2 @@
+// Command-line interface
+package cmd
diff --git a/cmd/root.go b/cmd/root.go
new file mode 100644
index 0000000..5dbfdac
--- /dev/null
+++ b/cmd/root.go
@@ -0,0 +1,29 @@
+package cmd
+
+import (
+ "fmt"
+ "github.com/spf13/cobra"
+ "os"
+)
+
+var rootCmd = &cobra.Command{
+ Use: "cvez",
+ Short: "CVE utility tool.",
+ Long: `
+ A Common Vulnerability (CVE), Common Platform Enumeration
+ (CPE), Common Vulnerability Scoring System (CVSS), and National
+ Vulnerability Database (NVD) feed parser.
+ `,
+
+ Run: func(cmd *cobra.Command, args []string) {
+ // Do Stuff Here
+ },
+}
+
+func Execute() {
+ if err := rootCmd.Execute(); err != nil {
+ fmt.Println(err)
+ os.Exit(1)
+ }
+}
+