Skip to content

Commit 3ea87bf

Browse files
committed
style: format layout with goimports
1 parent 1bb8ec5 commit 3ea87bf

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

cmd/cmd.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
package cmd
22

33
import (
4+
"os"
5+
"strings"
6+
47
"hack-browser-data/core"
58
"hack-browser-data/log"
69
"hack-browser-data/utils"
7-
"os"
8-
"strings"
910

1011
"github.com/urfave/cli/v2"
1112
)
@@ -25,7 +26,7 @@ func Execute() {
2526
Name: "hack-browser-data",
2627
Usage: "Export passwords/cookies/history/bookmarks from browser",
2728
UsageText: "[hack-browser-data -b chrome -f json -dir results -cc]\n Get all data(password/cookie/history/bookmark) from chrome",
28-
Version: "0.3.5",
29+
Version: "0.3.6",
2930
Flags: []cli.Flag{
3031
&cli.BoolFlag{Name: "verbose", Aliases: []string{"vv"}, Destination: &verbose, Value: false, Usage: "verbose"},
3132
&cli.BoolFlag{Name: "compress", Aliases: []string{"cc"}, Destination: &compress, Value: false, Usage: "compress result to zip"},

0 commit comments

Comments
 (0)