github-tui/bin/main.ml

21 lines
353 B
OCaml
Raw Normal View History

2024-01-07 03:03:54 +03:00
(*
2024-01-06 18:23:50 +03:00
let () = print_endline @@ Github_tui.Gh.query
{|
query {
repository(owner: "chshersh", name: "zbg") {
issues(last: 2, states: [OPEN], orderBy: {field: CREATED_AT, direction: DESC}) {
nodes {
number
title
author {
login
}
}
}
}
}
|}
2024-01-07 03:03:54 +03:00
*)
2024-03-23 13:26:12 +03:00
let () = Github_tui.Main.main ()