mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-10 17:26:10 +08:00
31723ad146
* stash * Use rejectif idea * rename * wip! * Convert old systems to new * fixup! * fix typo
10 lines
323 B
Go
10 lines
323 B
Go
package softlayer
|
|
|
|
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
|
|
}
|