1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-14 11:23:09 +02:00
lazygit/pkg/gui/refresh.go

10 lines
184 B
Go
Raw Normal View History

package gui
import (
"github.com/jesseduffield/lazygit/pkg/gui/types"
)
func (gui *Gui) Refresh(options types.RefreshOptions) error {
return gui.helpers.Refresh.Refresh(options)
}