feat: introduce IntroBudnle.proto

This commit is contained in:
Patryk Osmaczko 2026-02-09 22:15:38 +01:00
parent 21cd52b064
commit 8046bf0b25
No known key found for this signature in database
GPG Key ID: 6A385380FD275B44
3 changed files with 25 additions and 0 deletions

View File

@ -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)]

View 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
View File

@ -0,0 +1,9 @@
syntax = "proto3";
package logoschat.intro;
message IntroBundle {
bytes installation_pubkey = 1;
bytes ephemeral_pubkey = 2;
bytes signature = 3;
}