Skip to content

Commit 516d2a6

Browse files
author
Michael Cross
committed
googlecloud dns: Make package name match import path
Also, add package description
1 parent cbcaa2d commit 516d2a6

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
@@ -99,7 +99,7 @@ func setup(c *cli.Context) (*Configuration, *Account, *acme.Client) {
9999
apiKey := os.Getenv("GANDI_API_KEY")
100100
provider, err = gandi.NewDNSProvider(apiKey)
101101
case "gcloud":
102-
provider, err = googleclouddns.NewDNSProvider("")
102+
provider, err = googlecloud.NewDNSProvider("")
103103
case "namecheap":
104104
provider, err = namecheap.NewDNSProvider("", "")
105105
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)