Files
crawlab/grpc/proto/entity/dependencies_service_v2_request.proto
2024-06-14 15:42:50 +08:00

32 lines
612 B
Protocol Buffer

syntax = "proto3";
package grpc;
option go_package = ".;grpc";
message Dependency {
string name = 1;
string version = 2;
}
message DependenciesServiceV2ConnectRequest {
string node_key = 1;
}
message DependenciesServiceV2SyncRequest {
string node_key = 1;
string lang = 2;
repeated Dependency dependencies = 3;
}
message DependenciesServiceV2InstallRequest {
string node_key = 1;
string lang = 2;
repeated Dependency dependencies = 3;
string proxy = 4;
}
message DependenciesServiceV2UninstallRequest {
string node_key = 1;
string lang = 2;
repeated Dependency dependencies = 3;
}