From df144e727a858ed07e3c9328d91efe052c4781e1 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Mon, 13 Aug 2018 15:28:16 +0200 Subject: fix some linting trouble --- graphql/models/edges.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'graphql/models') diff --git a/graphql/models/edges.go b/graphql/models/edges.go index 677d13f5..7de76edf 100644 --- a/graphql/models/edges.go +++ b/graphql/models/edges.go @@ -1,13 +1,16 @@ package models +// GetCursor return the cursor entry of an edge func (e OperationEdge) GetCursor() string { return e.Cursor } +// GetCursor return the cursor entry of an edge func (e BugEdge) GetCursor() string { return e.Cursor } +// GetCursor return the cursor entry of an edge func (e CommentEdge) GetCursor() string { return e.Cursor } -- cgit v1.2.3