From 4f807229705ba9d17f07af3e35d672d47f61fb4d Mon Sep 17 00:00:00 2001 From: Simon Boissonneault-Robert Date: Mon, 17 Jun 2019 16:41:08 -0400 Subject: [PATCH] Changing imports to match original repo --- connector/connector.go | 2 +- connector/http.go | 2 +- manager.go | 6 +++--- securechannel/channel.go | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/connector/connector.go b/connector/connector.go index 465b724..5ef8a2f 100644 --- a/connector/connector.go +++ b/connector/connector.go @@ -1,6 +1,6 @@ package connector -import "github.com/loomnetwork/yubihsm-go/commands" +import "github.com/certusone/yubihsm-go/commands" type ( // Connector implements a simple request interface with a YubiHSM2 diff --git a/connector/http.go b/connector/http.go index a55437f..ca2f195 100644 --- a/connector/http.go +++ b/connector/http.go @@ -7,7 +7,7 @@ import ( "net/http" "strings" - "github.com/loomnetwork/yubihsm-go/commands" + "github.com/certusone/yubihsm-go/commands" ) type ( diff --git a/manager.go b/manager.go index a40b51a..d72585b 100644 --- a/manager.go +++ b/manager.go @@ -6,9 +6,9 @@ import ( "sync" "time" - "github.com/loomnetwork/yubihsm-go/commands" - "github.com/loomnetwork/yubihsm-go/connector" - "github.com/loomnetwork/yubihsm-go/securechannel" + "github.com/certusone/yubihsm-go/commands" + "github.com/certusone/yubihsm-go/connector" + "github.com/certusone/yubihsm-go/securechannel" ) type ( diff --git a/securechannel/channel.go b/securechannel/channel.go index d3791e4..dab6b49 100644 --- a/securechannel/channel.go +++ b/securechannel/channel.go @@ -10,8 +10,8 @@ import ( "sync" "github.com/enceve/crypto/cmac" - "github.com/loomnetwork/yubihsm-go/commands" - "github.com/loomnetwork/yubihsm-go/connector" + "github.com/certusone/yubihsm-go/commands" + "github.com/certusone/yubihsm-go/connector" ) type (