Select Git revision
gcMessages.proto 811 B
////////////////////////////////////////////////////////////////////////////////
// Copyright © 2022 xx foundation //
// //
// Use of this source code is governed by a license that can be found in the //
// LICENSE file. //
////////////////////////////////////////////////////////////////////////////////
syntax = "proto3";
package groupChat;
option go_package = "gitlab.com/elixxir/client/groupChat";
// Request to join the group sent from leader to all members.
message Request {
bytes name = 1;
bytes idPreimage = 2;
bytes keyPreimage = 3;
bytes members = 4;
bytes message = 5;
int64 created = 6;
}