mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-03 18:53:13 -05:00 
			
		
		
		
	
		
			
	
	
		
			18 lines
		
	
	
		
			325 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			18 lines
		
	
	
		
			325 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| 
								 | 
							
								package etcd
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import (
							 | 
						||
| 
								 | 
							
									"time"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									"github.com/coredns/coredns/request"
							 | 
						||
| 
								 | 
							
								)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								// Serial implements the Transferer interface.
							 | 
						||
| 
								 | 
							
								func (e *Etcd) Serial(state request.Request) uint32 {
							 | 
						||
| 
								 | 
							
									return uint32(time.Now().Unix())
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								// MinTTL implements the Transferer interface.
							 | 
						||
| 
								 | 
							
								func (e *Etcd) MinTTL(state request.Request) uint32 {
							 | 
						||
| 
								 | 
							
									return 30
							 | 
						||
| 
								 | 
							
								}
							 |