File: comments.t

package info (click to toggle)
gcli 2.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 2,596 kB
  • sloc: ansic: 26,273; sh: 601; makefile: 538; perl: 374; yacc: 261; lex: 59
file content (11 lines) | stat: -rw-r--r-- 315 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
include "gcli/github/comments.h";

parser github_comment is
object of struct gcli_comment with
	("id"         => id as id,
	 "created_at" => date as iso8601_time,
	 "body"       => body as string,
	 "user"       => author as user);

parser github_comments is array of struct gcli_comment
	use parse_github_comment;