Mirror of a distributed, offline-first bug tracker embedded in git
1package connections 2 3type LazyBugEdge struct { 4 Id string 5 Cursor string 6} 7 8func (lbe LazyBugEdge) GetCursor() string { 9 return lbe.Cursor 10}