1#![doc = include_str!("../README.md")] 2 3/// error info. 4pub mod error; 5/// the core 6pub mod core; 7 8 9/// 系统版本 10pub const SYSTEM_VERSION:&str = env!("CARGO_PKG_VERSION"); 11/// 系统名称 12pub const SYSTEM_NAME:&str = env!("CARGO_PKG_DESCRIPTION");