diff options
Diffstat (limited to 'api.go')
| -rw-r--r-- | api.go | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -3,8 +3,8 @@ package digitalocean import ( "context" - "golang.org/x/oauth2" "github.com/digitalocean/godo" + "golang.org/x/oauth2" "go.wit.com/log" ) @@ -25,11 +25,11 @@ func (d *DigitalOcean) listRegions() []godo.Region { } /* - // Print details of each region. - fmt.Println("Available Regions:") - for _, region := range regions { - fmt.Printf("Slug: %s, Name: %s, Available: %v\n", region.Slug, region.Name, region.Available) - } + // Print details of each region. + fmt.Println("Available Regions:") + for _, region := range regions { + fmt.Printf("Slug: %s, Name: %s, Available: %v\n", region.Slug, region.Name, region.Available) + } */ return regions |
