1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-06 22:33:07 +02:00

Move the Ref interface from gui/types to models

This is a type that can be useful for model/backend stuff, so move it there. We
are going to use it in the API of the commit loader.
This commit is contained in:
Stefan Haller
2025-07-31 11:20:05 +02:00
parent cc0b5a2f7f
commit 4b9921d0a4
15 changed files with 35 additions and 30 deletions

View File

@ -0,0 +1,9 @@
package models
type Ref interface {
FullRefName() string
RefName() string
ShortRefName() string
ParentRefName() string
Description() string
}