mirror of
https://github.com/MichaelMure/git-bug.git
synced 2025-01-05 17:33:12 +03:00
14 lines
199 B
Go
14 lines
199 B
Go
|
package models
|
||
|
|
||
|
func (e OperationEdge) GetCursor() string {
|
||
|
return e.Cursor
|
||
|
}
|
||
|
|
||
|
func (e BugEdge) GetCursor() string {
|
||
|
return e.Cursor
|
||
|
}
|
||
|
|
||
|
func (e CommentEdge) GetCursor() string {
|
||
|
return e.Cursor
|
||
|
}
|