智能DNS初步支持搜索引擎线路

This commit is contained in:
刘祥超
2022-12-13 18:39:11 +08:00
parent 11b0a12304
commit eaca98ee3e
15 changed files with 1975 additions and 403 deletions

View File

@@ -0,0 +1,20 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
import "models/model_client_agent.proto";
// Agent服务
service ClientAgentService {
// 查找所有Agent
rpc findAllClientAgents(FindAllClientAgentsRequest) returns (FindAllClientAgentsResponse);
}
// 查找所有Agent
message FindAllClientAgentsRequest {
}
message FindAllClientAgentsResponse {
repeated ClientAgent clientAgents = 1;
}