Mark functions that need pagination support

This commit is contained in:
Ian Gulliver
2021-09-23 04:33:55 +00:00
parent e85fbd5df9
commit 1a86bcce4d
4 changed files with 5 additions and 0 deletions

View File

@@ -24,6 +24,7 @@ func (c *Client) InWorkspace(name string) (*WorkspaceClient, error) {
}
func (c *Client) GetWorkspaces() ([]*Workspace, error) {
// TODO: Handle pagination
resp := &workspacesResponse{}
err := c.get("workspaces", nil, resp)
if err != nil {