-
Notifications
You must be signed in to change notification settings - Fork 66
/
main.go
43 lines (36 loc) · 882 Bytes
/
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
package main
import (
"fmt"
"os"
"github.com/feliixx/mgodatagen/datagen"
"github.com/jessevdk/go-flags"
)
// Version of mgodatagen. Should be linked via ld_flags when compiling for binary release
//
// Use this to set version to last known tag:
//
// go build -ldflags "-X main.Version=$(git describe --tags $(git rev-list --tags --max-count=1))"
var Version string = "v0.12.0"
func main() {
var options datagen.Options
p := flags.NewParser(&options, flags.Default&^flags.HelpFlag)
p.Usage = "-f config_file.json"
_, err := p.Parse()
if err != nil {
fmt.Println("try mgodatagen --help for more informations")
os.Exit(1)
}
if options.Help {
p.WriteHelp(os.Stdout)
os.Exit(0)
}
if options.Version {
fmt.Printf("mgodatagen %s\n", Version)
os.Exit(0)
}
err = datagen.Generate(&options, os.Stdout)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}