-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
54 lines (48 loc) · 836 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
44
45
46
47
48
49
50
51
52
53
54
package main
import (
"log"
"os"
"strings"
"github.com/joho/godotenv"
"github.com/urfave/cli/v2"
)
func main() {
godotenv.Load()
app := &cli.App{
Name: "prrn",
Usage: "simple sql migrator",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "dir",
Value: "schema",
EnvVars: []string{"PRRN_DIR"},
},
},
}
app.Commands = []*cli.Command{
{
Name: "init",
Action: cmdInit,
},
{
Name: "make",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "name",
Required: true,
},
&cli.StringFlag{
Name: "tool",
Required: false,
DefaultText: "sql-migrate",
Usage: "supported " + strings.Join([]string{SQLMigrate, GolangMigrate}, ", "),
},
},
Action: cmdMake,
},
}
err := app.Run(os.Args)
if err != nil {
log.Fatal(err)
}
}