App is a new Spread construct that can group together sets of Entities.
| 12 | |
| 13 | // App is a new Spread construct that can group together sets of Entities. |
| 14 | type App struct { |
| 15 | base |
| 16 | entities []Entity |
| 17 | } |
| 18 | |
| 19 | // NewApp creates a new App entity. |
| 20 | func NewApp(entities []Entity, defaults kube.ObjectMeta, source string, objects ...deploy.KubeObject) (*App, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected