Skip to content

Commit

Permalink
feat: rename package to reflect new location
Browse files Browse the repository at this point in the history
  • Loading branch information
secustor committed Jun 9, 2021
1 parent 0ccb594 commit abe38c5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module gitlab.com/whizus/customer/pinto/cert-manager-webhook-pinto
module github.com/camaoag/cert-manager-webhook-project-pinto

go 1.16

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package main

import (
"github.com/camaoag/cert-manager-webhook-project-pinto/pkg/dns"
"github.com/jetstack/cert-manager/pkg/acme/webhook/cmd"
log "github.com/sirupsen/logrus"
"gitlab.com/whizus/customer/pinto/cert-manager-webhook-pinto/pkg/dns"
"os"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/dns/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package dns

import (
"context"
"gitlab.com/whizus/customer/pinto/cert-manager-webhook-pinto/internal/testutils"
"github.com/camaoag/cert-manager-webhook-project-pinto/internal/testutils"
v1 "k8s.io/api/core/v1"
extapi "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
"reflect"
Expand Down
4 changes: 2 additions & 2 deletions pkg/dns/solver.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package dns

import (
"fmt"
"github.com/camaoag/cert-manager-webhook-project-pinto/internal/gopinto"
"github.com/camaoag/cert-manager-webhook-project-pinto/internal/logutils"
log "github.com/sirupsen/logrus"
"gitlab.com/whizus/customer/pinto/cert-manager-webhook-pinto/internal/gopinto"
"gitlab.com/whizus/customer/pinto/cert-manager-webhook-pinto/internal/logutils"
"strings"

"github.com/jetstack/cert-manager/pkg/acme/webhook/apis/acme/v1alpha1"
Expand Down
2 changes: 1 addition & 1 deletion pkg/dns/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package dns

import (
"fmt"
"github.com/camaoag/cert-manager-webhook-project-pinto/internal/gopinto"
"github.com/jetstack/cert-manager/pkg/acme/webhook/apis/acme/v1alpha1"
"github.com/jinzhu/copier"
"github.com/sirupsen/logrus"
"gitlab.com/whizus/customer/pinto/cert-manager-webhook-pinto/internal/gopinto"
cc "golang.org/x/oauth2/clientcredentials"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion tests/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/jetstack/cert-manager/test/acme/dns"

pinto "gitlab.com/whizus/customer/pinto/cert-manager-webhook-pinto/pkg/dns"
pinto "github.com/camaoag/cert-manager-webhook-project-pinto/pkg/dns"
)

var (
Expand Down

0 comments on commit abe38c5

Please sign in to comment.