Skip to content

Commit 9cf7e50

Browse files
formatted imports
1 parent bd11062 commit 9cf7e50

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

internal/commands/pre-receive.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ package commands
22

33
import (
44
"fmt"
5+
"log"
6+
57
prereceive "github.com/Checkmarx/secret-detection/pkg/hooks/pre-receive"
68
"github.com/MakeNowJust/heredoc"
79
"github.com/checkmarx/ast-cli/internal/params"
810
"github.com/checkmarx/ast-cli/internal/wrappers"
911
"github.com/spf13/cobra"
10-
"log"
1112
)
1213

1314
const (

internal/commands/pre_commit.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ package commands
22

33
import (
44
"fmt"
5+
"strings"
6+
57
precommit "github.com/Checkmarx/secret-detection/pkg/hooks/pre-commit"
68
"github.com/MakeNowJust/heredoc"
79
"github.com/checkmarx/ast-cli/internal/wrappers"
810
"github.com/spf13/cobra"
9-
"strings"
1011
)
1112

1213
// PreCommitCommand creates the pre-commit subcommand

0 commit comments

Comments
 (0)