geochan/src/util.ml

5 lines
155 B
OCaml
Raw Normal View History

2024-05-29 19:16:48 +02:00
let gen_uuid () =
let random_state = Random.State.make_self_init () in
Random.set_state random_state;
Uuidm.to_string (Uuidm.v4_gen random_state ())