mirror of
https://github.com/aljazceru/njump.git
synced 2025-12-17 06:14:22 +01:00
23 lines
339 B
Protocol Buffer
23 lines
339 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "github.com/fiatjaf/njump;main";
|
|
|
|
message CachedEvent {
|
|
string id = 1;
|
|
int64 expiry = 2;
|
|
repeated string relays = 3;
|
|
}
|
|
|
|
message FollowListArchive {
|
|
string source = 1;
|
|
repeated string pubkeys = 2;
|
|
}
|
|
|
|
message PubKeyArchive {
|
|
string pubkey = 1;
|
|
}
|
|
|
|
message EventInRelay {
|
|
string id = 1;
|
|
}
|