summaryrefslogtreecommitdiffstats
path: root/pkg/gui/controllers/base_controller.go
blob: 100acfd2a32d72ea63f59cb439837bf7275e6d66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package controllers

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

type baseController struct{}

func (self *baseController) GetKeybindings(opts types.KeybindingsOpts) []*types.Binding {
	return nil
}

func (self *baseController) GetMouseKeybindings(opts types.KeybindingsOpts) []*gocui.ViewMouseBinding {
	return nil
}

func (self *baseController) GetOnClick() func() error {
	return nil
}

func (self *baseController) GetOnRenderToMain() func() error {
	return nil
}

func (self *baseController) GetOnFocus() func(types.OnFocusOpts) error {
	return nil
}

func (self *baseController) GetOnFocusLost() func(types.OnFocusLostOpts) error {
	return nil
}