github.com/replicatedhq/ship@v0.55.0/pkg/lifecycle/kustomizeintro/kustomizeIntro.go (about)

     1  package kustomizeintro
     2  
     3  import (
     4  	"context"
     5  
     6  	"github.com/replicatedhq/ship/pkg/api"
     7  	"github.com/replicatedhq/ship/pkg/lifecycle"
     8  )
     9  
    10  type kustomizeIntro struct{}
    11  
    12  func NewKustomizeIntro() lifecycle.KustomizeIntro {
    13  	return &kustomizeIntro{}
    14  }
    15  
    16  func (k *kustomizeIntro) Execute(context.Context, *api.Release, api.KustomizeIntro) error {
    17  	return nil
    18  }