summaryrefslogtreecommitdiffstats
path: root/pkg/gui/controllers/types.go
blob: 9783ca3b76acb877e626a4c9273be6f86de0dc78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package controllers

import (
	"github.com/jesseduffield/lazygit/pkg/gui/types"
)

// all fields mandatory (except `CanRebase` because it's boolean)
type SwitchToCommitFilesContextOpts struct {
	RefName   string
	CanRebase bool
	Context   types.Context
}