package otoggl

  1. Overview
  2. Docs
module type Client = module type of Piaf.Client
type t =
  1. | Basic of {
    1. username : string;
    2. password : string;
    }
  2. | ApiToken of string
val create_header : t -> (string, string) result
module Client (Authentication : sig ... end) : Client with type t = Piaf.Client.t