Skip to content

Commit 71bd0c5

Browse files
author
Aizen
committed
add path v2
1 parent 121cf7c commit 71bd0c5

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
To install `cryptipass`, use `go get`:
2424

2525
```bash
26-
go get github.com/francescoalemanno/cryptipass
26+
go get github.com/francescoalemanno/cryptipass/v2
2727
```
2828

2929
Then, import it into your project:
3030

3131
```go
32-
import "github.com/francescoalemanno/cryptipass"
32+
import "github.com/francescoalemanno/cryptipass/v2"
3333
```
3434

3535
NOTE: **We also have a [CLI](cmd/genpw) available for non-library uses.**

cmd/genpw/cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strings"
99
"text/tabwriter"
1010

11-
"github.com/francescoalemanno/cryptipass"
11+
"github.com/francescoalemanno/cryptipass/v2"
1212
)
1313

1414
type Passphrase struct {

cryptipass_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"testing"
99

10-
"github.com/francescoalemanno/cryptipass"
10+
"github.com/francescoalemanno/cryptipass/v2"
1111
)
1212

1313
func TestBasic(t *testing.T) {

examples/customlist/customlist.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/francescoalemanno/cryptipass"
6+
"github.com/francescoalemanno/cryptipass/v2"
77
)
88

99
func main() {

examples/passphrase/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/francescoalemanno/cryptipass"
6+
"github.com/francescoalemanno/cryptipass/v2"
77
)
88

99
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/francescoalemanno/cryptipass
1+
module github.com/francescoalemanno/cryptipass/v2
22

33
go 1.23.0

0 commit comments

Comments
 (0)