Files
pipeline-api/api/v2/get_runner.proto
T
2023-01-02 01:36:59 -07:00

23 lines
400 B
Protocol Buffer

syntax = "proto3";
package api.v2;
option go_package = "git.ohea.xyz/cursorius/pipeline-api/go/api/v2;apiv2";
message GetRunnerOptions {
bool clone_source = 2;
}
message GetRunnerRequest {
repeated string tags = 1;
GetRunnerOptions options = 2;
}
message GetRunnerResponse {
string id = 1;
}
service GetRunnerService {
rpc GetRunner(GetRunnerRequest) returns (GetRunnerResponse) {}
}