Hi, Is the proto files available for flyte-2
# flyte-support
a
Hi, Is the proto files available for flyte-2
b
cc @freezing-airport-6809 @glamorous-carpet-83516 have we open-sourced the proto files yet?
a
@broad-monitor-993 These are generated files from the proto. Thats a good - question if the actual proto files has been opensourced. It should end with a .proto extension, and look like something below:
Copy code
syntax = "proto3";

package run_service;

service RunService {
  rpc CreateRun(CreateRunRequest) returns (CreateRunResponse);
}

message CreateRunRequest {
  string job_id = 1;
}

message CreateRunResponse {
  string run_id = 1;
}
f
Idl not yet
We are working on coalescing them With v1 for easy migration
👍 1