1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

more refactoring

This commit is contained in:
Jesse Duffield
2022-02-05 14:42:56 +11:00
parent 8e3484d8e9
commit 482bdc4f1e
30 changed files with 372 additions and 227 deletions

View File

@ -7,6 +7,8 @@ import (
)
type GlobalController struct {
baseController
c *types.ControllerCommon
os *oscommands.OSCommand
}
@ -16,8 +18,9 @@ func NewGlobalController(
os *oscommands.OSCommand,
) *GlobalController {
return &GlobalController{
c: c,
os: os,
baseController: baseController{},
c: c,
os: os,
}
}