forked from vulsio/go-cve-dictionary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
47 lines (37 loc) · 1.06 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package main
import (
"context"
"flag"
"fmt"
"os"
"strings"
"github.com/google/subcommands"
"github.com/kotakanbe/go-cve-dictionary/commands"
)
// Name ... Name
const Name string = "go-cve-dictionary"
// Version ... Version
var version = "0.2.0"
// Revision of Git
var revision string
func main() {
subcommands.Register(subcommands.HelpCommand(), "")
subcommands.Register(subcommands.FlagsCommand(), "")
subcommands.Register(subcommands.CommandsCommand(), "")
subcommands.Register(&commands.ServerCmd{}, "server")
subcommands.Register(&commands.FetchJvnCmd{}, "fetchjvn")
subcommands.Register(&commands.FetchNvdCmd{}, "fetchnvd")
subcommands.Register(&commands.ListCmd{}, "list")
var v = flag.Bool("v", false, "Show version")
if envArgs := os.Getenv("GO_CVE_DICTIONARY_ARGS"); 0 < len(envArgs) {
flag.CommandLine.Parse(strings.Fields(envArgs))
} else {
flag.Parse()
}
if *v {
fmt.Printf("go-cve-dictionary %s %s\n", version, revision)
os.Exit(int(subcommands.ExitSuccess))
}
ctx := context.Background()
os.Exit(int(subcommands.Execute(ctx)))
}