From 1e80074dd6c29623bafa2b05359345c2dd7df10a Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sat, 13 May 2023 13:06:25 +0200 Subject: [PATCH] fix issue of request before starting the server --- lib/net.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/net.ml b/lib/net.ml index c98050f..ce52d7c 100644 --- a/lib/net.ml +++ b/lib/net.ml @@ -21,7 +21,7 @@ let execute_request url json = Lwt_main.run body ;; -let get_session = +let get_session () = let body = execute_request (fmt "%s/session" url) Json.connection_payload in print_endline body; body