* WIP: Client-side of gRPC proxy * Add tests * gofmt * Implement OnShutdown; add a little logging * Update for context in Exchange change * go fmt * Update README * Review comments * Compiling is good * More README improvements
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);
|
|
}
|