Module Current_gitlab.Repo_id

Identifier for a Project's repository hosted on GitLab.

type t = {
  1. owner : string;
  2. name : string;
  3. project_id : int;
}
val pp : t Fmt.t

Pretty print t as owner/name/project_id.

val compare : t -> t -> int

Compare two compare t t two repo_ids.

val cmdliner : t Cmdliner.Term.t

Cmdliner parser for reading a repo_id as a string. The expected format is "owner/name/project_id".