github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+incompatible/actor/v7pushaction/manifest_parser.go (about)

     1  package v7pushaction
     2  
     3  import "code.cloudfoundry.org/cli/util/manifestparser"
     4  
     5  //go:generate counterfeiter . ManifestParser
     6  
     7  type ManifestParser interface {
     8  	Apps(appName string) ([]manifestparser.Application, error)
     9  	ContainsManifest() bool
    10  	FullRawManifest() []byte
    11  	RawAppManifest(appName string) ([]byte, error)
    12  }