1
0
mirror of https://github.com/Luzifer/password.git synced 2024-09-19 18:32:57 +00:00

Fix: Broken versioned import path

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2019-02-28 19:59:16 +01:00
parent 7da3eac6fc
commit b96871ff8d
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E
3 changed files with 11 additions and 9 deletions

10
go.mod Normal file
View 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
)

View File

@ -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) {

View File

@ -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
)