summaryrefslogtreecommitdiffstats
path: root/pkg/commands/branch.go
blob: 8da8918d11f118fa8b39bcef7dcf7d50cdabb63c (plain)
1
2
3
4
5
6
7
8
9
10
package commands

// Branch : A git branch
// duplicating this for now
type Branch struct {
	Name      string
	Recency   string
	Pushables string
	Pullables string
}