Module Connection.Credentials

type username = string
type password = string
type t = {
username : string;
password : string;
mechanism : string;
}
val make : username:string -> password:string -> t
val default : t