mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-10 11:10:18 +02:00
21 lines
355 B
Go
21 lines
355 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/gui/controllers/helpers"
|
|
)
|
|
|
|
type controllerCommon struct {
|
|
c *helpers.HelperCommon
|
|
helpers *helpers.Helpers
|
|
}
|
|
|
|
func NewControllerCommon(
|
|
c *helpers.HelperCommon,
|
|
helpers *helpers.Helpers,
|
|
) *controllerCommon {
|
|
return &controllerCommon{
|
|
c: c,
|
|
helpers: helpers,
|
|
}
|
|
}
|