mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-04 22:34:39 +02:00
The comments that I'm deleting here explain why we need the bool; however, in our case that's a theoretical issue. It would only arise if we ever were to pass a nil context to SetParentContext, which we never do.
18 lines
392 B
Go
18 lines
392 B
Go
package context
|
|
|
|
import "github.com/jesseduffield/lazygit/pkg/gui/types"
|
|
|
|
type ParentContextMgr struct {
|
|
ParentContext types.Context
|
|
}
|
|
|
|
var _ types.ParentContexter = (*ParentContextMgr)(nil)
|
|
|
|
func (self *ParentContextMgr) SetParentContext(context types.Context) {
|
|
self.ParentContext = context
|
|
}
|
|
|
|
func (self *ParentContextMgr) GetParentContext() types.Context {
|
|
return self.ParentContext
|
|
}
|