mirror of
https://github.com/c-cube/ezcurl.git
synced 2026-03-09 07:23:33 -04:00
format
This commit is contained in:
parent
84f2701f98
commit
c54d42f18c
2 changed files with 9 additions and 2 deletions
|
|
@ -68,7 +68,11 @@ 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 = { curl: Curl.t; set_opts : Curl.t -> unit }
|
type t = {
|
||||||
|
curl: Curl.t;
|
||||||
|
set_opts: Curl.t -> unit;
|
||||||
|
}
|
||||||
|
|
||||||
type client = t
|
type client = t
|
||||||
|
|
||||||
let _top_mutex = Mutex.create ()
|
let _top_mutex = Mutex.create ()
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,10 @@ module Config : sig
|
||||||
val to_string : t -> string
|
val to_string : t -> string
|
||||||
end
|
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
|
(** A client, i.e. a cURL instance. The wrapping record has been present since
|
||||||
0.3 *)
|
0.3 *)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue