Source file list_backend.ml

1
2
3
4
5
type config = Email.t list ref

let send (conf : config) (e : Email.t) =
  conf := e :: !conf;
  Lwt.return_ok ()