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