mirror of
https://github.com/criyle/go-judge.git
synced 2025-09-26 22:39:12 +08:00
16 lines
291 B
Protocol Buffer
16 lines
291 B
Protocol Buffer
edition = "2023";
|
|
|
|
package pb;
|
|
|
|
option features.field_presence = IMPLICIT;
|
|
option go_package = "github.com/criyle/go-judge/pb";
|
|
|
|
message FileID { string fileID = 1; }
|
|
|
|
message FileContent {
|
|
string name = 1;
|
|
bytes content = 2;
|
|
}
|
|
|
|
message FileListType { map<string, string> fileIDs = 1; }
|