feat(contrib): add snmp2cpe (#1625)

This commit is contained in:
MaineK00n
2023-03-28 18:56:28 +09:00
committed by GitHub
parent 7f35f4e661
commit db21149f00
19 changed files with 963 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
package main
import (
"fmt"
"os"
rootCmd "github.com/future-architect/vuls/contrib/snmp2cpe/pkg/cmd/root"
)
func main() {
if err := rootCmd.NewCmdRoot().Execute(); err != nil {
fmt.Fprintf(os.Stderr, "failed to exec snmp2cpe: %s\n", fmt.Sprintf("%+v", err))
os.Exit(1)
}
}