18 lines
308 B
Protocol Buffer
18 lines
308 B
Protocol Buffer
syntax = "proto3";
|
|
package ricochet;
|
|
|
|
import "contact.proto";
|
|
import "identity.proto";
|
|
|
|
message Config {
|
|
Identity identity = 1;
|
|
map<string, Contact> contacts = 2;
|
|
Secrets secrets = 3;
|
|
}
|
|
|
|
// Secrets are not transmitted to frontend RPC clients
|
|
message Secrets {
|
|
bytes servicePrivateKey = 1;
|
|
}
|
|
|