blob: 81d115555d6e3d7100c887a44ac1b779421027dc (
plain) (
blame)
1
2
3
4
5
6
7
8
|
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();
|