func()

in binding-go/client.go [190:195]


func (c *Client) Close(id InstanceID) error {
	if err := c.post(id.path()+"/close/", struct{}{}, nil); err != nil {
		return fmt.Errorf("close environment: %s", err)
	}
	return nil
}