Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AZURE_PRIVATE_DNS: Rename module to conform to Go styleguide #2697

Merged
merged 2 commits into from
Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion OWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ providers/akamaiedgedns @svernick
providers/autodns @arnoschoon
providers/axfrddns @hnrgrgr
providers/azuredns @vatsalyagoel
providers/azure_private_dns @matthewmgamble
providers/azureprivatedns @matthewmgamble
providers/bind @tlimoncelli
providers/cloudflare @tresni
providers/cloudns @pragmaton
Expand Down
1 change: 1 addition & 0 deletions documentation/providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ If a feature is definitively not supported for whatever reason, we would also li
| [`AUTODNS`](providers/autodns.md) ||||||||||||||||||||
| [`AXFRDDNS`](providers/axfrddns.md) ||||||||||||||||||||
| [`AZURE_DNS`](providers/azure_dns.md) ||||||||||||||||||||
| [`AZURE_PRIVATE_DNS`](providers/azure_private_dns.md) ||||||||||||||||||||
| [`BIND`](providers/bind.md) ||||||||||||||||||||
| [`CLOUDFLAREAPI`](providers/cloudflareapi.md) ||||||||||||||||||||
| [`CLOUDNS`](providers/cloudns.md) ||||||||||||||||||||
Expand Down
2 changes: 1 addition & 1 deletion providers/_all/all.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
_ "github.com/StackExchange/dnscontrol/v4/providers/akamaiedgedns"
_ "github.com/StackExchange/dnscontrol/v4/providers/autodns"
_ "github.com/StackExchange/dnscontrol/v4/providers/axfrddns"
_ "github.com/StackExchange/dnscontrol/v4/providers/azure_private_dns"
_ "github.com/StackExchange/dnscontrol/v4/providers/azuredns"
_ "github.com/StackExchange/dnscontrol/v4/providers/azureprivatedns"
_ "github.com/StackExchange/dnscontrol/v4/providers/bind"
_ "github.com/StackExchange/dnscontrol/v4/providers/cloudflare"
_ "github.com/StackExchange/dnscontrol/v4/providers/cloudns"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package azure_private_dns
package azureprivatedns

import (
"github.com/StackExchange/dnscontrol/v4/models"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package azure_private_dns
package azureprivatedns

import (
"context"
Expand Down