atuin/atuin-client/src/message.rs
Ellie Huxtable 03dd3ddf8b
Switch to uuidv7 (#864)
* Add uuid_v7

* Actually use the new uuid

* Add a test to ensure all uuids are unique, even in a tight loop

* Make clippy happy
2023-04-11 16:26:16 +01:00

5 lines
64 B
Rust

pub struct Message {
pub id: Uuid,
pub type: String,
}