forked from p93542168/wheat-cache
10 lines
197 B
Protocol Buffer
10 lines
197 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option go_package = "pkg/proto";
|
||
|
import "google/protobuf/timestamp.proto";
|
||
|
|
||
|
message BaseKey {
|
||
|
string key = 1;
|
||
|
int64 ttl = 2;
|
||
|
google.protobuf.Timestamp expire = 3;
|
||
|
}
|