github.com/ActiveState/cli@v0.0.0-20240508170324-6801f60cd051/pkg/platform/runtime/setup/implementations/camel/resolver.go (about)

     1  package camel
     2  
     3  import (
     4  	"github.com/ActiveState/cli/internal/locale"
     5  	"github.com/go-openapi/strfmt"
     6  )
     7  
     8  type Resolver struct{}
     9  
    10  func NewResolver() *Resolver {
    11  	return &Resolver{}
    12  }
    13  
    14  func (r *Resolver) ResolveArtifactName(_ strfmt.UUID) string {
    15  	return locale.Tl("camel_bundle_name", "legacy bundle")
    16  }