Compare commits

...

2 commits

Author SHA1 Message Date
madroach
33a21f0c56
Merge c54d42f18c into 44a2b9f149 2026-02-11 14:25:33 +00:00
Simon Cruanes
c54d42f18c
format 2026-02-11 09:25:28 -05:00
2 changed files with 9 additions and 2 deletions

View file

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

View file

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