1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-06 22:33:07 +02:00
Files
lazygit/pkg/commands/models/ref.go
Stefan Haller 4b9921d0a4 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.
2025-07-31 15:21:34 +02:00

10 lines
148 B
Go

package models
type Ref interface {
FullRefName() string
RefName() string
ShortRefName() string
ParentRefName() string
Description() string
}