feat(hash):完成基本散列算法。

This commit is contained in:
徐涛
2023-06-29 22:14:44 +08:00
parent 418fc4dccf
commit 260f17021b
4 changed files with 57 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
pub mod uuid {
pub fn new() -> Box<String> {
Box::from(uuid::Uuid::new_v4().to_string())
}
}