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_client_agent.proto
T

20 lines
405 B
Protocol Buffer

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