Client is the UAA client
| 14 | |
| 15 | // Client is the UAA client |
| 16 | type Client struct { |
| 17 | Info |
| 18 | |
| 19 | config Config |
| 20 | |
| 21 | connection Connection |
| 22 | router *internal.Router |
| 23 | userAgent string |
| 24 | } |
| 25 | |
| 26 | // NewClient returns a new UAA Client with the provided configuration |
| 27 | func NewClient(config Config) *Client { |
nothing calls this directly
no outgoing calls
no test coverage detected