Skip to content

Commit 997fffd

Browse files
committed
other: move to v3
1 parent 2960940 commit 997fffd

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

cmd/root.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
"os"
3030

3131
"github.com/spf13/cobra"
32-
"github.com/vdjagilev/nmap-formatter/v2/formatter"
32+
"github.com/vdjagilev/nmap-formatter/v3/formatter"
3333
)
3434

3535
var config = formatter.Config{

cmd/root_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
"testing"
3131

3232
"github.com/spf13/cobra"
33-
"github.com/vdjagilev/nmap-formatter/v2/formatter"
33+
"github.com/vdjagilev/nmap-formatter/v3/formatter"
3434
)
3535

3636
func Test_validate(t *testing.T) {

cmd/validation.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/vdjagilev/nmap-formatter/v2/formatter"
7+
"github.com/vdjagilev/nmap-formatter/v3/formatter"
88
)
99

1010
// validate is checking input from the command line

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/vdjagilev/nmap-formatter/v2
1+
module github.com/vdjagilev/nmap-formatter/v3
22

33
go 1.22.2
44

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ THE SOFTWARE.
2121
*/
2222
package main
2323

24-
import "github.com/vdjagilev/nmap-formatter/v2/cmd"
24+
import "github.com/vdjagilev/nmap-formatter/v3/cmd"
2525

2626
func main() {
2727
cmd.Execute()

0 commit comments

Comments
 (0)