package ez_api

  1. Overview
  2. Docs
type 'a rp = ('a, string) Stdlib.result Lwt.t
type 'a action = {
  1. send : 'a -> unit rp;
  2. close : int option -> unit rp;
}
type 'a ws = {
  1. action : 'a action;
  2. conn : unit rp;
}