Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: civo/civogo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.3.82
Choose a base ref
...
head repository: civo/civogo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.82
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Oct 2, 2024

  1. rm redundant print statement

    uzaxirr committed Oct 2, 2024
    Copy the full SHA
    80d18b8 View commit details
  2. Merge pull request #217 from civo/volty

    rm redundant print statement
    uzaxirr authored Oct 2, 2024
    Copy the full SHA
    e04c310 View commit details
Showing with 0 additions and 2 deletions.
  1. +0 −2 volumetype.go
2 changes: 0 additions & 2 deletions volumetype.go
Original file line number Diff line number Diff line change
@@ -2,7 +2,6 @@ package civogo

import (
"encoding/json"
"fmt"
)

// VolumeType represent the storage class related to a volume
@@ -22,7 +21,6 @@ func (c *Client) ListVolumeTypes() ([]VolumeType, error) {
}

volumeTypes := make([]VolumeType, 0)
fmt.Println(string(resp))
if err := json.Unmarshal(resp, &volumeTypes); err != nil {
return nil, err
}