mirror of
				https://github.com/StackExchange/dnscontrol.git
				synced 2024-05-11 05:55:12 +00:00 
			
		
		
		
	* Add initial transip provider * Add GetNameservers to transip * Add first try to correction function. * Implemented corrections * Add docs for transip * Fix TransIP TTL updates * Fix transip nameserver records * Update docs/_providers/transip.md Co-authored-by: Sven Luijten <11269635+svenluijten@users.noreply.github.com> Co-authored-by: Sven Luijten <11269635+svenluijten@users.noreply.github.com>
		
			
				
	
	
		
			12 lines
		
	
	
		
			239 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			239 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package transip
 | |
| 
 | |
| 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
 | |
| }
 |