Skip to content

Commit

Permalink
Merge pull request #1 from HewlettPackard/fix-imports
Browse files Browse the repository at this point in the history
Fix hpegl-provider-lib import paths
  • Loading branch information
eamonnotoole authored Jun 17, 2021
2 parents 702a774 + edcab18 commit 0c5f422
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ import (

"github.com/hpe-hcss/hpecli-generated-caas-client/pkg/mcaasapi"

"github.com/hpe-hcss/hpegl-provider-lib/pkg/client"
"github.com/hpe-hcss/hpegl-provider-lib/pkg/token/common"
"github.com/hpe-hcss/hpegl-provider-lib/pkg/token/retrieve"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/client"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/token/common"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/token/retrieve"

"github.com/hpe-hcss/caas-terraform-resources/pkg/constants"
)
Expand Down Expand Up @@ -239,7 +239,7 @@ hpegl. The slice is defined as follows:
package clients
import (
"github.com/hpe-hcss/hpegl-provider-lib/pkg/client"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/client"
clicaas "github.com/hpe-hcss/caas-terraform-resources/pkg/client"
)
Expand All @@ -259,7 +259,7 @@ package client
import (
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hpe-hcss/hpegl-provider-lib/pkg/provider"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/provider"
quake "github.com/quattronetworks/quake-client/pkg/terraform/configuration"
Expand Down Expand Up @@ -343,10 +343,10 @@ import (
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
"github.com/hpe-hcss/hpegl-provider-lib/pkg/provider"
"github.com/hpe-hcss/hpegl-provider-lib/pkg/token/common"
"github.com/hpe-hcss/hpegl-provider-lib/pkg/token/retrieve"
"github.com/hpe-hcss/hpegl-provider-lib/pkg/token/serviceclient"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/provider"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/token/common"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/token/retrieve"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/token/serviceclient"
"github.com/hpe-hcss/caas-terraform-resources/pkg/client"
"github.com/hpe-hcss/caas-terraform-resources/pkg/resources"
Expand Down Expand Up @@ -429,7 +429,7 @@ import (
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
"github.com/hpe-hcss/hpegl-provider-lib/pkg/provider"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/provider"
"github.com/hpe-hcss/terraform-provider-hpegl/internal/client"
"github.com/hpe-hcss/terraform-provider-hpegl/internal/services/resources"
Expand Down Expand Up @@ -504,7 +504,7 @@ import (
"github.com/hpe-hcss/caas-terraform-resources/pkg/constants"
"github.com/hpe-hcss/hpegl-provider-lib/pkg/registration"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/registration"
"github.com/hpe-hcss/caas-terraform-resources/internal/resources"
)
Expand Down Expand Up @@ -578,7 +578,7 @@ interface that is passed-in to provider.NewProviderFunc:
package resources
import (
"github.com/hpe-hcss/hpegl-provider-lib/pkg/registration"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/registration"
resquake "github.com/quattronetworks/quake-client/pkg/terraform/registration"
Expand Down Expand Up @@ -721,10 +721,10 @@ import (
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
"github.com/hpe-hcss/hpegl-provider-lib/pkg/provider"
"github.com/hpe-hcss/hpegl-provider-lib/pkg/token/common"
"github.com/hpe-hcss/hpegl-provider-lib/pkg/token/retrieve"
"github.com/hpe-hcss/hpegl-provider-lib/pkg/token/serviceclient"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/provider"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/token/common"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/token/retrieve"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/token/serviceclient"
"github.com/hpe-hcss/caas-terraform-resources/pkg/client"
"github.com/hpe-hcss/caas-terraform-resources/pkg/resources"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/hpe-hcss/hpegl-provider-lib
module github.com/hewlettpackard/hpegl-provider-lib

go 1.15

Expand Down
2 changes: 1 addition & 1 deletion pkg/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"

"github.com/hpe-hcss/hpegl-provider-lib/pkg/registration"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/registration"
)

// ConfigureFunc is a type definition of a function that returns a ConfigureContextFunc object
Expand Down
2 changes: 1 addition & 1 deletion pkg/token/retrieve/retrieve.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package retrieve
import (
"context"

"github.com/hpe-hcss/hpegl-provider-lib/pkg/token/common"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/token/common"
)

// TokenRetrieveFuncCtx type of function to retrieve a token passing-in a context
Expand Down
2 changes: 1 addition & 1 deletion pkg/token/serviceclient/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

identityclient "github.com/hpe-hcss/iam-lib/pkg/identity-client"

"github.com/hpe-hcss/hpegl-provider-lib/pkg/token/common"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/token/common"
)

const retryLimit = 3
Expand Down

0 comments on commit 0c5f422

Please sign in to comment.