aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/hashicorp/vault/api/auth.go
blob: da870c111cc40f261283584d7e37b5f9969047bf (plain)
1
2
3
4
5
6
7
8
9
10
11
package api

// Auth is used to perform credential backend related operations.
type Auth struct {
	c *Client
}

// Auth is used to return the client for credential-backend API calls.
func (c *Client) Auth() *Auth {
	return &Auth{c: c}
}