2021-03-08 20:14:30 -05:00
|
|
|
package gandiv5
|
2021-03-07 13:19:22 -05:00
|
|
|
|
2022-09-07 14:08:06 -04:00
|
|
|
import (
|
2023-05-20 19:21:45 +02:00
|
|
|
"github.com/StackExchange/dnscontrol/v4/models"
|
2022-09-07 14:08:06 -04:00
|
|
|
)
|
2021-03-07 13:19:22 -05:00
|
|
|
|
2022-08-11 17:24:47 -04:00
|
|
|
// 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 {
|
2022-12-07 10:06:27 -05:00
|
|
|
return nil
|
2021-03-07 13:19:22 -05:00
|
|
|
}
|