6 lines
97 B
Rust
6 lines
97 B
Rust
use uuid::Uuid;
|
|
|
|
pub fn short_id() -> String {
|
|
Uuid::new_v4().to_string()[..8].to_string()
|
|
}
|