diff options
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(); + |
