1
0
Fork 0
pompup/internal/installers/lazygit.go

17 lines
232 B
Go

package installers
import (
_ "embed"
"github.com/developomp/pompup/internal/wrapper"
)
func init() {
register(&Installer{
Name: "lazygit",
Desc: "lazy git tui",
Setup: func() {
wrapper.ParuOnce("lazygit")
},
})
}