diff options
Diffstat (limited to 'listKeys.go')
| -rw-r--r-- | listKeys.go | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/listKeys.go b/listKeys.go index 4b7da29..7058309 100644 --- a/listKeys.go +++ b/listKeys.go @@ -2,8 +2,9 @@ package digitalocean import ( "context" - "golang.org/x/oauth2" + "github.com/digitalocean/godo" + "golang.org/x/oauth2" "go.wit.com/log" ) @@ -28,10 +29,10 @@ func (d *DigitalOcean) ListSSHKeyID() error { log.Log(POLL, "found ssh key:", key) } /* - sshKeys := []godo.DropletCreateSSHKey{ - {ID: 22994569}, - {ID: 333}, - } + sshKeys := []godo.DropletCreateSSHKey{ + {ID: 22994569}, + {ID: 333}, + } */ // return fmt.Errorf("SSH Key not found") |
