mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-10 01:20:26 +08:00
13 lines
173 B
Protocol Buffer
13 lines
173 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message DNSRecord {
|
|
string id = 1;
|
|
string name = 2;
|
|
string value = 3;
|
|
string type = 4;
|
|
string route = 5;
|
|
}
|