1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-11-25 22:32:13 +02:00

add remote model

This commit is contained in:
Jesse Duffield
2019-11-13 23:18:29 +11:00
parent 7849f91d80
commit 092f27495a
2 changed files with 31 additions and 0 deletions

14
pkg/commands/remote.go Normal file
View File

@@ -0,0 +1,14 @@
package commands
// Remote : A git remote
type Remote struct {
Name string
Urls []string
Selected bool
}
// GetDisplayStrings returns the display string of a remote
func (r *Remote) GetDisplayStrings(isFocused bool) []string {
return []string{r.Name}
}