feat: add protobuf schema bridge contracts

This commit is contained in:
a.tolmachev
2026-03-25 16:06:43 +03:00
parent ceb37ad0d3
commit 7901a0365a
12 changed files with 527 additions and 4 deletions
+7
View File
@@ -0,0 +1,7 @@
use thiserror::Error;
#[derive(Clone, Debug, PartialEq, Eq, Error)]
pub enum ProtoError {
#[error("oneof {oneof_name} must contain at least one variant")]
EmptyOneof { oneof_name: String },
}