From 3ea87bf32732f61f892768dcbf5fb0ca1cd7794d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=B4=8D=E1=B4=8F=E1=B4=8F=C9=B4D4=CA=80=E1=B4=8B?= Date: Sun, 4 Jul 2021 17:35:06 +0800 Subject: [PATCH] style: format layout with goimports --- cmd/cmd.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cmd/cmd.go b/cmd/cmd.go index 903a378..a79d701 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -1,11 +1,12 @@ package cmd import ( + "os" + "strings" + "hack-browser-data/core" "hack-browser-data/log" "hack-browser-data/utils" - "os" - "strings" "github.com/urfave/cli/v2" ) @@ -25,7 +26,7 @@ func Execute() { Name: "hack-browser-data", Usage: "Export passwords/cookies/history/bookmarks from browser", UsageText: "[hack-browser-data -b chrome -f json -dir results -cc]\n Get all data(password/cookie/history/bookmark) from chrome", - Version: "0.3.5", + Version: "0.3.6", Flags: []cli.Flag{ &cli.BoolFlag{Name: "verbose", Aliases: []string{"vv"}, Destination: &verbose, Value: false, Usage: "verbose"}, &cli.BoolFlag{Name: "compress", Aliases: []string{"cc"}, Destination: &compress, Value: false, Usage: "compress result to zip"},