mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-12 18:37:54 +08:00
e69e6f27e4
* fix linting * rename AuditRecordsor to RecordAuditor * gandi_v5 to gandiv5
11 lines
239 B
Go
11 lines
239 B
Go
package gandiv5
|
|
|
|
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
|
|
}
|