(_ context.Context, obj *bug.CommentHistoryStep)
| 14 | type bugCommentHistoryStepResolver struct{} |
| 15 | |
| 16 | func (bugCommentHistoryStepResolver) Date(_ context.Context, obj *bug.CommentHistoryStep) (*time.Time, error) { |
| 17 | t := obj.UnixTime.Time() |
| 18 | return &t, nil |
| 19 | } |
| 20 | |
| 21 | var _ graph.BugAddCommentTimelineItemResolver = bugAddCommentTimelineItemResolver{} |
| 22 |