()
| 511 | } |
| 512 | |
| 513 | func (c *ClientImpl) GetAppManifest() AppManifest { |
| 514 | appMeta := c.GetAppMeta() |
| 515 | configSchema := GenerateConfigSchema(c.Root) |
| 516 | dataSchema := GenerateDataSchema(c.Root) |
| 517 | secrets := c.GetSecrets() |
| 518 | |
| 519 | return AppManifest{ |
| 520 | AppMeta: appMeta, |
| 521 | ConfigSchema: configSchema, |
| 522 | DataSchema: dataSchema, |
| 523 | Secrets: secrets, |
| 524 | } |
| 525 | } |
| 526 | |
| 527 | func (c *ClientImpl) PrintAppManifest() { |
| 528 | manifest := c.GetAppManifest() |
no test coverage detected