Initial commit

This commit is contained in:
2023-01-02 01:36:59 -07:00
commit d45e237f29
18 changed files with 2369 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
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) {}
}