package gitlab-unix

  1. Overview
  2. Docs

Authentication Token for accessing GitLab APIs.

Of the several ways provided in GitLab, we currently support:

  • Personal Access Tokens
  • Project Access Tokens
type t

t is the abstract type of a token.

val of_string : string -> t

of_string token_string is the abstract token value corresponding to the string token_string.

val to_string : t -> string

to_string token is the string serialization of token.