mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-10 01:10:27 +08:00
25 lines
445 B
Protocol Buffer
25 lines
445 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
option go_package = "./pb";
|
||
|
|
|
||
|
|
package pb;
|
||
|
|
|
||
|
|
service DNSService {
|
||
|
|
// 查找问题
|
||
|
|
rpc findAllDNSIssues (FindAllDNSIssuesRequest) returns (FindAllDNSIssuesResponse);
|
||
|
|
}
|
||
|
|
|
||
|
|
// 查找问题
|
||
|
|
message FindAllDNSIssuesRequest {
|
||
|
|
}
|
||
|
|
|
||
|
|
message FindAllDNSIssuesResponse {
|
||
|
|
repeated DNSIssue issues = 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
message DNSIssue {
|
||
|
|
string target = 1;
|
||
|
|
int64 targetId = 2;
|
||
|
|
string type = 3;
|
||
|
|
string description = 4;
|
||
|
|
map<string, string> params = 5;
|
||
|
|
}
|