diff options
| author | 1992414357@qq.com <1992414357@qq.com> | 2025-06-18 18:00:59 +0800 |
|---|---|---|
| committer | 1992414357@qq.com <1992414357@qq.com> | 2025-06-18 18:00:59 +0800 |
| commit | b88b42de3f0b0fa225b162b22522e14742ab943f (patch) | |
| tree | 273d461c0ae7f3454b80d2a5f4e106860246749b /core/src | |
| parent | 3ab90fcaeebe3b050d6ca9859f1c99963ce82c2f (diff) | |
.
Diffstat (limited to 'core/src')
| -rw-r--r-- | core/src/lib.rs | 1 | ||||
| -rw-r--r-- | core/src/message_encoders.rs | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs index 81d1155..7d1d850 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -3,6 +3,7 @@ use bincode::config::Configuration; pub mod data; pub mod service; +pub mod message_encoders; pub const BINCODE_CONVERT_FAILED : Vec<u8> = Vec::new(); pub const BINCODE_CONFIG : Configuration = config::standard();
\ No newline at end of file diff --git a/core/src/message_encoders.rs b/core/src/message_encoders.rs index 49db429..e2cac1f 100644 --- a/core/src/message_encoders.rs +++ b/core/src/message_encoders.rs @@ -1,8 +1,5 @@ use bincode::config; use bincode::config::Configuration; -pub mod data; -pub mod service; - pub const BINCODE_CONVERT_FAILED : Vec<u8> = Vec::new(); pub const BINCODE_CONFIG : Configuration = config::standard(); |
