Skip to content

Commit

Permalink
move gateway controller to its own folder (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
dskatz authored Jun 28, 2022
1 parent e7443db commit 3f80405
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion internal/cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
_ "k8s.io/client-go/plugin/pkg/client/auth/oidc"

"github.com/kanopy-platform/gateway-certificate-controller/internal/admission"
v1beta1controllers "github.com/kanopy-platform/gateway-certificate-controller/internal/controllers/v1beta1"
v1beta1gc "github.com/kanopy-platform/gateway-certificate-controller/internal/controllers/v1beta1/garbagecollection"
v1beta1controllers "github.com/kanopy-platform/gateway-certificate-controller/internal/controllers/v1beta1/gateway"
logzap "github.com/kanopy-platform/gateway-certificate-controller/internal/log/zap"

"github.com/spf13/cobra"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v1beta1
package gateway

import (
"context"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v1beta1
package gateway

import (
"context"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v1beta1
package gateway

type OptionsFunc func(*GatewayController)

Expand Down

0 comments on commit 3f80405

Please sign in to comment.