pusk/lib/utils.ml

12 lines
219 B
OCaml
Raw Normal View History

exception Any of string
2023-05-12 20:04:04 +02:00
let fmt = Printf.sprintf
2023-05-13 19:58:48 +02:00
type context = { session_id : string }
let load_dotenv =
(* Load variables *)
let path = "config/.env" in
if Sys.file_exists path then Dotenv.export ~path ()
;;