1 2 3 4 5 6 7 8 9 10 11 12 13
# LightTool > 一个轻量级的Rust工具库,提倡的核心理念是:基于Rust原生库、无第三方依赖 ## 快速开始 例如 `seconds()` 方法(获取当前秒级时间戳),使用方法如下所示 ```rust use light_tool::timestamp; println!("{}", timestamp::seconds()); ```