24 lines
1.1 KiB
OCaml
24 lines
1.1 KiB
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Copyright (c) 2014 - 2017. *)
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
(* *)
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
(** Typed RPC services: definition, binding and dispatch. *)
|
|
|
|
module Data : Resto.ENCODING with type 'a t = 'a Data_encoding.t
|
|
and type schema = Data_encoding.json_schema
|
|
|
|
include (module type of struct include Resto end)
|
|
module Service : (module type of struct include Resto.MakeService(Data) end)
|
|
|
|
(** Compatibility layer, to be removed ASAP. *)
|
|
|
|
val forge_request :
|
|
(_ , unit, 'params, unit, 'input, 'output, unit) Service.t ->
|
|
'params -> 'input -> MethMap.key * string list * Data_encoding.json
|
|
|