mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-19 12:12:42 +02:00
more and more move rebase commit refreshing into existing abstraction and more and more WIP and more handling clicks properly fix merge conflicts update cheatsheet lots more preparation to start moving things into controllers WIP better typing expand on remotes controller moving more code into controllers
11 lines
263 B
Go
11 lines
263 B
Go
package controllers
|
|
|
|
import "github.com/jesseduffield/lazygit/pkg/common"
|
|
|
|
// if Go let me do private struct embedding of structs with public fields (which it should)
|
|
// I would just do that. But alas.
|
|
type ControllerCommon struct {
|
|
*common.Common
|
|
IGuiCommon
|
|
}
|