Bindoj_apidir_runtime.Apidir_client
type error =
| Unexpected_response of {
status : int;
body : Kxclib.Json.jv;
}
| Bad_response of {
body : Kxclib.Json.jv;
desc : Bindoj_base.Typed_type_desc.boxed_type_decl;
msg : string option;
}
exception Apidir_client_error of error
module type JsonResponse = sig ... end
module type ScopedJsonFetcher = sig ... end
module type T = sig ... end
module Make
(Dir : Bindoj_apidir_shared.ApiDirManifest)
(Fetcher : ScopedJsonFetcher) :
sig ... end