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>
12 lines
174 B
Protocol Buffer
12 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);
|
|
}
|