mirror of
https://github.com/logos-messaging/chat_proto.git
synced 2026-02-17 03:23:08 +00:00
feat: introduce IntroBudnle.proto
This commit is contained in:
parent
21cd52b064
commit
8046bf0b25
@ -27,6 +27,10 @@ pub mod logoschat {
|
||||
pub mod reliability {
|
||||
include!("logoschat/reliability/logoschat.reliability.rs");
|
||||
}
|
||||
|
||||
pub mod intro {
|
||||
include!("logoschat/intro/logoschat.intro.rs");
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
|
||||
12
gen/rust/src/logoschat/intro/logoschat.intro.rs
Normal file
12
gen/rust/src/logoschat/intro/logoschat.intro.rs
Normal file
@ -0,0 +1,12 @@
|
||||
// @generated
|
||||
// This file is @generated by prost-build.
|
||||
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
|
||||
pub struct IntroBundle {
|
||||
#[prost(bytes="bytes", tag="1")]
|
||||
pub installation_pubkey: ::prost::bytes::Bytes,
|
||||
#[prost(bytes="bytes", tag="2")]
|
||||
pub ephemeral_pubkey: ::prost::bytes::Bytes,
|
||||
#[prost(bytes="bytes", tag="3")]
|
||||
pub signature: ::prost::bytes::Bytes,
|
||||
}
|
||||
// @@protoc_insertion_point(module)
|
||||
9
protos/intro.proto
Normal file
9
protos/intro.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package logoschat.intro;
|
||||
|
||||
message IntroBundle {
|
||||
bytes installation_pubkey = 1;
|
||||
bytes ephemeral_pubkey = 2;
|
||||
bytes signature = 3;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user