Skip to content

Commit bc8cfbe

Browse files
committed
Merge pull request #162 from xi2/googlecloud
googlecloud dns: Make package name match import path
2 parents c1b0d43 + 516d2a6 commit bc8cfbe

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

cli_handlers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func setup(c *cli.Context) (*Configuration, *Account, *acme.Client) {
100100
apiKey := os.Getenv("GANDI_API_KEY")
101101
provider, err = gandi.NewDNSProvider(apiKey)
102102
case "gcloud":
103-
provider, err = googleclouddns.NewDNSProvider("")
103+
provider, err = googlecloud.NewDNSProvider("")
104104
case "namecheap":
105105
provider, err = namecheap.NewDNSProvider("", "")
106106
case "route53":

providers/dns/googlecloud/googlecloud.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
package googleclouddns
1+
// Package googlecloud implements a DNS provider for solving the DNS-01
2+
// challenge using Google Cloud DNS.
3+
package googlecloud
24

35
import (
46
"fmt"

providers/dns/googlecloud/googlecloud_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package googleclouddns
1+
package googlecloud
22

33
import (
44
"os"

0 commit comments

Comments
 (0)