func (c *client) Exit(req *ExitRequest) (*ExitResponse, error) {
    response, err := c.post("/execution/exit", req, &ExitResponse{})
    exitResponse := response.(*ExitResponse)

    if err != nil {