Compare commits

..

1 commit

Author SHA1 Message Date
madroach
d5068dd53e
Merge 84f2701f98 into 44a2b9f149 2026-02-11 02:58:06 +00:00
2 changed files with 2 additions and 9 deletions

View file

@ -68,11 +68,7 @@ module Config = struct
let to_string s = Format.asprintf "%a" pp s let to_string s = Format.asprintf "%a" pp s
end end
type t = { type t = { curl: Curl.t; set_opts : Curl.t -> unit }
curl: Curl.t;
set_opts: Curl.t -> unit;
}
type client = t type client = t
let _top_mutex = Mutex.create () let _top_mutex = Mutex.create ()

View file

@ -15,10 +15,7 @@ module Config : sig
val to_string : t -> string val to_string : t -> string
end end
type t = { type t = { curl: Curl.t; set_opts : Curl.t -> unit }
curl: Curl.t;
set_opts: Curl.t -> unit;
}
(** A client, i.e. a cURL instance. The wrapping record has been present since (** A client, i.e. a cURL instance. The wrapping record has been present since
0.3 *) 0.3 *)