mirror of
https://codeberg.org/scip/anydb.git
synced 2025-12-16 20:10:59 +01:00
* add vhs made demo gif * add support for ANYDB_DB env var * left one section * fixed data type bug, added demo gifs, upgraded dependencies --------- Co-authored-by: Thomas von Dein <tom@vondein.org>
21 lines
369 B
Protocol Buffer
21 lines
369 B
Protocol Buffer
// -*-c++-*-
|
|
|
|
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 Preview = 3;
|
|
repeated string Tags = 4;
|
|
google.protobuf.Timestamp Created = 5;
|
|
uint64 Size = 6;
|
|
bool Encrypted = 7;
|
|
bool Binary = 8;
|
|
string Value = 9;
|
|
}
|