mirror of
https://codeberg.org/scip/anydb.git
synced 2025-12-17 04:20:59 +01:00
18 lines
331 B
Protocol Buffer
18 lines
331 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
package app;
|
||
|
|
|
||
|
|
import "google/protobuf/timestamp.proto";
|
||
|
|
|
||
|
|
option go_package = "github.com/tlinden/anydb/app";
|
||
|
|
|
||
|
|
message DbEntry {
|
||
|
|
string Id = 1;
|
||
|
|
string Key = 2;
|
||
|
|
string Value = 3;
|
||
|
|
bytes Bin = 4;
|
||
|
|
repeated string Tags = 5;
|
||
|
|
google.protobuf.Timestamp Created = 6;
|
||
|
|
uint64 Size = 7;
|
||
|
|
bool Encrypted = 8;
|
||
|
|
}
|