package b0
Software construction and deployment kit
Install
dune-project
Dependency
Authors
Maintainers
Sources
b0-0.0.5.tbz
sha512=00a6868b4dfa34565d0141b335622a81a0e8d5b9e3c6dfad025dabfa3df2db2a1302b492953bbbce30c3a4406c324fcec25250a00b38f6d18a69e15605e3b07e
doc/b0_b00_kit/B00_github/Issue/index.html
Module B00_github.Issue
Repository issues.
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 B0_std.Fmt.tpp is a formatter for issues.
val pp_short : t B0_std.Fmt.tpp_short is a short formatter for issues.
val list :
B00_http.Httpr.t ->
Auth.t ->
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.t ->
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.