This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeCommon/pkg/rpc/protos/service_dns.proto
T

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;
}