diff options
| author | 1992414357@qq.com <1992414357@qq.com> | 2025-05-27 07:21:37 +0800 |
|---|---|---|
| committer | 1992414357@qq.com <1992414357@qq.com> | 2025-05-27 07:21:37 +0800 |
| commit | f8336ed832fa8e1ddd2f1783bdfc23d3279d5e6a (patch) | |
| tree | 42097cd72e46736ac3a544bd3d6dc50e2327a677 /core/src/lib.rs | |
First commit
Diffstat (limited to 'core/src/lib.rs')
| -rw-r--r-- | core/src/lib.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs new file mode 100644 index 0000000..f70fc4e --- /dev/null +++ b/core/src/lib.rs @@ -0,0 +1,10 @@ +use bincode::config; +use bincode::config::Configuration; + +pub mod pad_io; +pub mod pad_data; + +pub const DEFAULT_PORT : u16 = 5989; +pub const BINCODE_CONVERT_FAILED : Vec<u8> = Vec::new(); +pub const BINCODE_CONFIG : Configuration = config::standard(); + |
