summaryrefslogtreecommitdiffstats
path: root/pkg/gui/controllers/base_controller.go
blob: e510c1a9fb654635508980ef24bd2dcc758f0437 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
}