(c *apiClient, sessionID string)
| 586 | } |
| 587 | |
| 588 | func showSessionInfo(c *apiClient, sessionID string) { |
| 589 | sess, err := c.getSession(sessionID) |
| 590 | if err != nil { |
| 591 | fmt.Printf(" error: %v\n", err) |
| 592 | return |
| 593 | } |
| 594 | printSessionInfo(sess) |
| 595 | fmt.Println() |
| 596 | } |
| 597 | |
| 598 | // ----- observed tools & rules commands ----- |
| 599 |
no test coverage detected