17 lines
232 B
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")
|
|
},
|
|
})
|
|
}
|