Workspace returns a single workspace.
(ctx context.Context, id uuid.UUID)
| 156 | |
| 157 | // Workspace returns a single workspace. |
| 158 | func (c *Client) Workspace(ctx context.Context, id uuid.UUID) (Workspace, error) { |
| 159 | return c.getWorkspace(ctx, id) |
| 160 | } |
| 161 | |
| 162 | // DeletedWorkspace returns a single workspace that was deleted. |
| 163 | func (c *Client) DeletedWorkspace(ctx context.Context, id uuid.UUID) (Workspace, error) { |