File: comments.t

package info (click to toggle)
gcli 2.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,476 kB
  • sloc: ansic: 25,411; sh: 580; makefile: 509; yacc: 261; lex: 59
file content (11 lines) | stat: -rw-r--r-- 314 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
include "gcli/gitlab/comments.h";

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

parser gitlab_comments is
array of struct gcli_comment use parse_gitlab_comment;