mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-03 18:53:13 -05:00 
			
		
		
		
	This was added, but didn't see any use. For a large, complex chunk of code we should have some users of it. Remove all watch functionally from plugins, servers and packages. Fixes: #2548 Signed-off-by: Miek Gieben <miek@miek.nl>
		
			
				
	
	
		
			13 lines
		
	
	
		
			174 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			174 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
 | 
						|
package coredns.dns;
 | 
						|
option go_package = "pb";
 | 
						|
 | 
						|
message DnsPacket {
 | 
						|
	bytes msg = 1;
 | 
						|
}
 | 
						|
 | 
						|
service DnsService {
 | 
						|
	rpc Query (DnsPacket) returns (DnsPacket);
 | 
						|
}
 |