package git-mirage

  1. Overview
  2. Docs
type endpoint = {
  1. port : int;
  2. hostname : string;
  3. authenticator : Awa.Keys.authenticator option;
  4. user : string;
  5. credentials : [ `Password of string | `Pubkey of Awa.Hostkey.priv ];
  6. path : string;
  7. capabilities : [ `Rd | `Wr ];
}
val git_mirage_ssh_password : string Mimic.value
val git_mirage_ssh_key : Awa.Hostkey.priv Mimic.value
val git_mirage_ssh_authenticator : Awa.Keys.authenticator Mimic.value
module type S = sig ... end