From 461563872769f2b5b5b37bc3870af1531be0d879 Mon Sep 17 00:00:00 2001 From: theaddon Date: Wed, 25 Sep 2024 21:26:43 +0200 Subject: [PATCH] add byteorder proto traits --- crates/proto_core/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/proto_core/src/lib.rs b/crates/proto_core/src/lib.rs index bf3f0cf..8dac347 100644 --- a/crates/proto_core/src/lib.rs +++ b/crates/proto_core/src/lib.rs @@ -6,6 +6,7 @@ use crate::error::ProtoCodecError; pub mod error; pub mod types; +pub mod byteorder; pub trait ProtoCodec: Sized { fn proto_serialize(&self, buf: &mut Vec) -> Result<(), ProtoCodecError>;