2022-01-30 00:53:28 +02:00
|
|
|
package gui
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/gui/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (gui *Gui) Refresh(options types.RefreshOptions) error {
|
2022-12-30 14:24:24 +02:00
|
|
|
return gui.helpers.Refresh.Refresh(options)
|
2023-02-10 14:44:15 +02:00
|
|
|
}
|