Skip to content

Commit

Permalink
testPR1 (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyLewen authored Jun 4, 2024
1 parent 8bff614 commit f265995
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cmd/trivy/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package main
import (
"context"
"errors"
"fmt"
"os"

"golang.org/x/xerrors"
Expand All @@ -16,6 +17,7 @@ import (
)

func main() {
testPR1()
if err := run(); err != nil {
var exitError *types.ExitError
if errors.As(err, &exitError) {
Expand All @@ -41,3 +43,7 @@ func run() error {
}
return nil
}

func testPR1() {
fmt.Println("testPR1")
}

0 comments on commit f265995

Please sign in to comment.