rframe 0.1.0

A lightweight framework implemented in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! RFrame - 一个 Rust 实现的轻量级框架库
//!
//! 这个库提供了一系列工具和抽象,帮助开发者更快地构建应用。

pub mod prelude {
    // 重导出常用的类型和函数
}

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}