1pub use kumo_mac_address::get_mac_address;
2pub use uuid;
3use uuid::Uuid;
4
5pub fn now_v1() -> uuid::Uuid {
6 Uuid::now_v1(get_mac_address())
7}
8
9pub fn new_v1(ts: uuid::timestamp::Timestamp) -> uuid::Uuid {
10 Uuid::new_v1(ts, get_mac_address())
11}