mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-12 10:27:57 +08:00
1b83561b7f
Fixes https://github.com/StackExchange/dnscontrol/issues/1060 Fixes https://github.com/StackExchange/dnscontrol/issues/1059
11 lines
238 B
Go
11 lines
238 B
Go
package gcloud
|
|
|
|
import (
|
|
"github.com/StackExchange/dnscontrol/v3/models"
|
|
)
|
|
|
|
// AuditRecords returns an error if any records are not
|
|
// supportable by this provider.
|
|
func AuditRecords(records []*models.RecordConfig) error {
|
|
return nil
|
|
}
|