Issues
val title : t -> stringtitle i is the issue's title.
val body : t -> stringbody t is the issue's body.
val url : t -> stringurl i is the issue's url.
val pp : t B00_std.Fmt.tpp is a formatter for issues.
val pp_short : t B00_std.Fmt.tpp_short is a short formatter for issues.
val list : B00_http.Httpr.t -> auth -> Repo.t -> (int * t list, string) Stdlib.resultlist auth repo lists the issues for repository repo. The integer is the total number of issues.
Requests
val create : B00_http.Httpr.t -> auth -> Repo.t -> title:string -> body:string -> unit -> (num * uri, string) Stdlib.resultcreate auth repo opens an issue on the repository repo with the given title and body.
val close : B00_http.Httpr.t -> auth -> Repo.t -> num -> (num * uri, string) Stdlib.resultclose auth repo n closes issues n on the repository repo