22 lines
525 B
Rust
22 lines
525 B
Rust
//! 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;
|