Spaces:
Running
Running
File size: 355 Bytes
9314c03 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
syntax = "proto3";
package warp.multi_agent.v1;
import "options.proto";
option go_package = "github.com/warp/warp-proto-apis/multi_agent/v1";
message FileContentLineRange {
uint32 start = 1;
uint32 end = 2;
}
message FileContent {
string file_path = 1;
string content = 2;
FileContentLineRange line_range = 3;
}
|