mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-10 17:26:10 +08:00
10 lines
320 B
Go
10 lines
320 B
Go
package oracle
|
|
|
|
import "github.com/StackExchange/dnscontrol/v4/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
|
|
}
|