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

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

type IGuiCommon interface {
	popup.IPopupHandler

	LogAction(string)
	Refresh(types.RefreshOptions) error
}