DiffService returns the underlying Differ
()
| 757 | |
| 758 | // DiffService returns the underlying Differ |
| 759 | func (c *Client) DiffService() DiffService { |
| 760 | if c.diffService != nil { |
| 761 | return c.diffService |
| 762 | } |
| 763 | c.connMu.Lock() |
| 764 | defer c.connMu.Unlock() |
| 765 | return NewDiffServiceFromClient(diffapi.NewDiffClient(c.conn)) |
| 766 | } |
| 767 | |
| 768 | // IntrospectionService returns the underlying Introspection Client |
| 769 | func (c *Client) IntrospectionService() introspection.Service { |
no test coverage detected