mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-08-06 22:33:07 +02:00
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.
10 lines
148 B
Go
10 lines
148 B
Go
package models
|
|
|
|
type Ref interface {
|
|
FullRefName() string
|
|
RefName() string
|
|
ShortRefName() string
|
|
ParentRefName() string
|
|
Description() string
|
|
}
|