mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-17 23:50:24 +08:00
智能DNS初步支持搜索引擎线路
This commit is contained in:
20
pkg/rpc/protos/service_client_agent.proto
Normal file
20
pkg/rpc/protos/service_client_agent.proto
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user