mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 18:23:08 +03:00
22 lines
458 B
Go
22 lines
458 B
Go
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
|
|
}
|
|
|
|
// GetCursor return the cursor entry of an edge
|
|
func (e TimelineItemEdge) GetCursor() string {
|
|
return e.Cursor
|
|
}
|