github.com/jghiloni/cli@v6.28.1-0.20170628223758-0ce05fe032a2+incompatible/actor/pushaction/manifest/manifest.go (about)

     1  package manifest
     2  
     3  type Manifest struct {
     4  	Applications []Application
     5  }
     6  
     7  type Application struct {
     8  	DockerImage string
     9  	Name        string
    10  	Path        string
    11  }