github.com/arunkumar7540/cli@v6.45.0+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 }