summaryrefslogtreecommitdiffstats
path: root/pkg/gui/controllers/controller_common.go
blob: 0134399458cb950fc6c9fa46c27517cfb18ccad9 (plain)
1
2
3
4
5
6
7
8
9
10
package controllers

import "github.com/jesseduffield/lazygit/pkg/common"

// if Go let me do private struct embedding of structs with public fields (which it should)
// I would just do that. But alas.
type ControllerCommon struct {
	*common.Common
	IGuiCommon
}