NAC_Blockchain/nac-udm/src/l5_application/mod.rs

22 lines
525 B
Rust
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//! L5应用层 (Application Layer)
//!
//! NAC区块链的最上层提供面向用户的应用和工具
//! - DApps: 去中心化应用
//! - Wallet: 钱包应用
//! - Explorer: 区块浏览器
//! - Charter: Charter智能合约
/// DApps去中心化应用模块
pub mod dapps;
/// 钱包应用模块
pub mod wallet;
/// 区块浏览器模块
pub mod explorer;
/// Charter智能合约模块
pub mod charter;
pub use dapps::DApp;
pub use wallet::Wallet;
pub use explorer::Explorer;
pub use charter::CharterContract;