mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-26 22:00:26 +08:00
18 lines
375 B
Protocol Buffer
18 lines
375 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "models/rpc_messages.proto";
|
|
|
|
// 最近使用的条目服务
|
|
service LatestItemService {
|
|
// 记录最近使用的条目
|
|
rpc increaseLatestItem (IncreaseLatestItemRequest) returns (RPCSuccess);
|
|
}
|
|
|
|
// 记录最近使用的条目
|
|
message IncreaseLatestItemRequest {
|
|
string itemType = 1;
|
|
int64 itemId = 2;
|
|
} |