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

// Sys is used to perform system-related operations on Vault.
type Sys struct {
	c *Client
}

// Sys is used to return the client for sys-related API calls.
func (c *Client) Sys() *Sys {
	return &Sys{c: c}
}