package b0
Software construction and deployment kit
Install
Dune Dependency
Authors
Maintainers
Sources
b0-0.0.4.tbz
sha512=665735c8b7a8674201be765bdd676a18d1e38eff35de9d44c3dc15e2bfed2247e8963c9a32ae62d9ca2d6cd1edebd849aac29fdd5a846c14a30feea3edfc0601
doc/b0_b00_kit/B00_github/Issue/index.html
Module B00_github.Issue
Repository issues.
Issues
val title : t -> string
title i
is the issue's title.
val body : t -> string
body t
is the issue's body.
val url : t -> string
url i
is the issue's url.
val pp : t B00_std.Fmt.t
pp
is a formatter for issues.
val pp_short : t B00_std.Fmt.t
pp_short
is a short formatter for issues.
val list :
B00_http.Httpr.t ->
Auth.t ->
Repo.t ->
(int * t list, string) Stdlib.result
list 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.result
create auth repo
opens an issue on the repository repo
with the given title
and body
.