Skip to content

Commit 28e6ba0

Browse files
committed
rename package: execute->deployment
Signed-off-by: t-kikuc <[email protected]>
1 parent 77664e1 commit 28e6ba0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: pkg/app/pipedv1/plugin/wait/execute/server.go renamed to pkg/app/pipedv1/plugin/wait/deployment/server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
package execute
15+
package deployment
1616

1717
import (
1818
"context"

Diff for: pkg/app/pipedv1/plugin/wait/execute/wait.go renamed to pkg/app/pipedv1/plugin/wait/deployment/wait.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
package execute
15+
package deployment
1616

1717
import (
1818
"context"

Diff for: pkg/app/pipedv1/plugin/wait/server.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"golang.org/x/sync/errgroup"
2626

2727
"github.com/pipe-cd/pipecd/pkg/admin"
28-
"github.com/pipe-cd/pipecd/pkg/app/pipedv1/plugin/wait/execute"
28+
"github.com/pipe-cd/pipecd/pkg/app/pipedv1/plugin/wait/deployment"
2929
"github.com/pipe-cd/pipecd/pkg/cli"
3030
config "github.com/pipe-cd/pipecd/pkg/configv1"
3131
"github.com/pipe-cd/pipecd/pkg/plugin/logpersister"
@@ -124,7 +124,7 @@ func (s *plugin) run(ctx context.Context, input cli.Input) (runErr error) {
124124
// Start a gRPC server for handling external API requests.
125125
{
126126
var (
127-
service = execute.NewDeploymentService(
127+
service = deployment.NewDeploymentService(
128128
cfg,
129129
input.Logger,
130130
persister,

0 commit comments

Comments
 (0)