Files
lazygit/pkg/commands/remote.go
T

9 lines
128 B
Go

package commands
// Remote : A git remote
type Remote struct {
Name string
Urls []string
Branches []*RemoteBranch
}