1package api
2
3// Auth is used to perform credential backend related operations.
4type Auth struct {
5	c *Client
6}
7
8// Auth is used to return the client for credential-backend API calls.
9func (c *Client) Auth() *Auth {
10	return &Auth{c: c}
11}
12