Sign in
apache
/
iggy
/
refs/heads/test_panic
/
.
/
server
/
src
/
streaming
/
utils
/
random_id.rs
blob: 8c050efc920c75e3c574c26e0421118bf09a9277 [
file
] [
log
] [
blame
]
use
ulid
::
Ulid
;
use
uuid
::
Uuid
;
pub
fn
get_uuid
()
->
u128
{
Uuid
::
new_v4
().
to_u128_le
()
}
pub
fn
get_ulid
()
->
Ulid
{
Ulid
::
new
()
}