Module Ocamltter.Auth

module Auth: sig .. end

type t = {
   username :string;
   oauth :Twitter.Oauth.t;
}
val ocaml_of_t : t -> Ocaml.t
val t_of_ocaml : (t, Ocaml.t) Meta_conv.Types.Decoder.t
val t_of_ocaml_exn : (t, Ocaml.t) Meta_conv.Types.Decoder.t_exn
val authorize : Twitter.Auth.Consumer.t -> Twitter.Auth.VerifiedToken.t -> t
val authorize_interactive : string -> Twitter.Auth.Consumer.t -> t
module Single: sig .. end
val load : string -> t list
val save : string -> t list -> unit