mirror of
https://github.com/Luzifer/password.git
synced 2024-11-09 09:50:07 +00:00
Fix: Broken versioned import path
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
7da3eac6fc
commit
b96871ff8d
3 changed files with 11 additions and 9 deletions
10
go.mod
Normal file
10
go.mod
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
module github.com/Luzifer/password/v2
|
||||||
|
|
||||||
|
go 1.12
|
||||||
|
|
||||||
|
require (
|
||||||
|
github.com/Luzifer/go_helpers/v2 v2.9.0
|
||||||
|
github.com/pkg/errors v0.8.1
|
||||||
|
github.com/tredoe/osutil v0.0.0-20161130133508-7d3ee1afa71c
|
||||||
|
golang.org/x/crypto v0.0.0-20190228161510-8dd112bcdc25
|
||||||
|
)
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/Luzifer/go_helpers/str"
|
"github.com/Luzifer/go_helpers/v2/str"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestAvailableHashs(t *testing.T) {
|
func TestAvailableHashs(t *testing.T) {
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
module github.com/Luzifer/password/lib/v2
|
|
||||||
|
|
||||||
go 1.12
|
|
||||||
|
|
||||||
require (
|
|
||||||
github.com/Luzifer/go_helpers/v2 v2.9.0
|
|
||||||
github.com/pkg/errors v0.8.1
|
|
||||||
)
|
|
Loading…
Reference in a new issue