mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-03-03 15:02:52 +02:00
11 lines
121 B
Go
11 lines
121 B
Go
package commands
|
|
|
|
// Tag : A git tag
|
|
type Tag struct {
|
|
Name string
|
|
}
|
|
|
|
func (t *Tag) RefName() string {
|
|
return t.Name
|
|
}
|