mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 12:20:27 +08:00
15 lines
246 B
Protocol Buffer
15 lines
246 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message HTTPCacheTaskKey {
|
|
int64 id = 1;
|
|
int64 taskId = 2;
|
|
string key = 3;
|
|
string type = 4;
|
|
string keyType = 5;
|
|
bool isDone = 6;
|
|
bytes errorsJSON = 7;
|
|
int64 nodeClusterId = 8;
|
|
} |