lazy_bug.go

 1package connections
 2
 3type LazyBugEdge struct {
 4	Id     string
 5	Cursor string
 6}
 7
 8func (lbe LazyBugEdge) GetCursor() string {
 9	return lbe.Cursor
10}