mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-11-26 09:00:57 +02:00
12 lines
217 B
Go
12 lines
217 B
Go
package commands
|
|
|
|
// Tag : A git tag
|
|
type Tag struct {
|
|
Name string
|
|
}
|
|
|
|
// GetDisplayStrings returns the display string of a remote
|
|
func (r *Tag) GetDisplayStrings(isFocused bool) []string {
|
|
return []string{r.Name}
|
|
}
|