mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-30 03:23:08 +03:00
more refactoring
This commit is contained in:
16
pkg/gui/controllers/base_controller.go
Normal file
16
pkg/gui/controllers/base_controller.go
Normal file
@ -0,0 +1,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
|
||||
}
|
Reference in New Issue
Block a user