mirror of
https://github.com/aljazceru/njump.git
synced 2025-12-19 07:14:24 +01:00
28 lines
391 B
Protocol Buffer
28 lines
391 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 ID {
|
|
string id = 1;
|
|
}
|
|
|
|
message BannedEvent {
|
|
bytes id = 1;
|
|
string reason = 2;
|
|
}
|