mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-15 03:48:11 +08:00
fa52b4f2ae
Co-authored-by: Filippo Valsorda <github@bip.filippo.io>
12 lines
326 B
Go
12 lines
326 B
Go
package gandiv5
|
|
|
|
import (
|
|
"github.com/StackExchange/dnscontrol/v3/models"
|
|
)
|
|
|
|
// AuditRecords returns a list of errors corresponding to the records
|
|
// that aren't supported by this provider. If all records are
|
|
// supported, an empty list is returned.
|
|
func AuditRecords(records []*models.RecordConfig) []error {
|
|
return nil
|
|
}
|