This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open Base | |
open Protocol_conv_msgpack | |
open Protocol_conv_json | |
module Msg = struct | |
type t = {message: string} | |
[@@deriving protocol ~driver:(module Msgpack), protocol ~driver:(module Json)] | |
end | |
module type Request = sig |
OlderNewer