1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-04 23:22:28 +03:00
Files
lazygit/pkg/commands/commit_file.go
2019-03-16 10:20:27 +11:00

14 lines
270 B
Go

package commands
// CommitFile : A git commit file
type CommitFile struct {
Sha string
Name string
DisplayString string
}
// GetDisplayStrings is a function.
func (f *CommitFile) GetDisplayStrings() []string {
return []string{f.DisplayString}
}