NAC_Blockchain/nac-vision-wallet/src/lib.rs

27 lines
477 B
Rust

//! NAC VISION钱包 - 下一代智能钱包
pub mod account;
pub mod transaction;
pub mod constitutional_receipt;
pub mod gnacs_viewer;
pub mod ai_assistant;
pub mod security;
pub mod error;
pub mod types;
pub use error::{VisionError, Result};
pub use types::*;
/// VISION钱包版本
pub const VISION_VERSION: &str = "2.0.0-alpha";
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_version() {
assert_eq!(VISION_VERSION, "2.0.0-alpha");
}
}