()
| 525 | } |
| 526 | |
| 527 | func (c *ClientImpl) PrintAppManifest() { |
| 528 | manifest := c.GetAppManifest() |
| 529 | manifestJSON, err := json.MarshalIndent(manifest, "", " ") |
| 530 | if err != nil { |
| 531 | fmt.Printf("Error marshaling manifest: %v\n", err) |
| 532 | return |
| 533 | } |
| 534 | fmt.Println("<AppManifest>") |
| 535 | fmt.Println(string(manifestJSON)) |
| 536 | fmt.Println("</AppManifest>") |
| 537 | } |
no test coverage detected